-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
27 lines (23 loc) · 818 Bytes
/
index.php
File metadata and controls
27 lines (23 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<title>두 번째 페이지</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="/web_project2/bootstrap-3.3.4-dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<header class="jumbotron text-center">
<h1>두 번째 페이지</h1>
</header>
<hr />
<div class="text-center" id="control">
<a class="btn btn-default" href="./member/signup.php">회원가입</a>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="/web_project2/bootstrap-3.3.4-dist/js/bootstrap.min.js"></script>
</body>
</html>