-
Notifications
You must be signed in to change notification settings - Fork 0
/
guestbook.html
64 lines (58 loc) · 2.74 KB
/
guestbook.html
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang ="ko">
<head>
<script
src="https://code.jquery.com/jquery-3.6.0.js"
integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk="
crossorigin="anonymous"></script>
<!-- 합쳐지고 최소화된 최신 CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<!-- 부가적인 테마 -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
<!-- 합쳐지고 최소화된 최신 자바스크립트 -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<meta carset ="utf-8">
<title>James's code dairy</title> <!-- 블로그의 제목 + 아이콘-->
</head>
<body>
<div class="container">
<header>
<div class ="jumbotron">
<h1><span class="glyphicon glyphicon-pencil" aria-hidden="true"></span><a href="index.html"> <!-- 네비게이션바를 통한 항목의 구분-->
James's code dairy</a></h1>
<p>2021.04.09~ ing</p>
<style>
.jumbotron{
background-color :paleturquoise
}
</style>
</div>
<div align="right">
<button type="button" class="btn btn-primary" onclick ="location.href ='login.html'">log in</button> <!--로그인 버튼 누르면 링크로 이동-->
</div>
</header>
<nav>
<ul class="nav nav-tabs">
<li role="presentation"><a href="aboutme.html">About me</a></li>
<li role="presentation"><a href="futurevision.html">Future Vision</a></li>
<li role="presentation"><a href="projects2021.html">Projects 2021</a></li>
<li role="presentation" class="active"><a href="guestbook.html">Guest Book</a></li>
<li role="presentation"><a href="https://github.com/swa05142">Git Hub</a></li> <!--V2 - 깃허브 링크-->
</ul>
</nav>
<br><br><br>
<form action ="전송 받을 대상">
<h2>Guest Book</h2>
제목 : <input type="text" name ="guestbooktitle"><br> <!--Guestbook을 통해 방명록을 입력받을 수 있음-->
<select>
<option value="questions">Quistions</option>
<option value="Cheerful">Cheerful</option>
<option value="ads">Ads</option>
</select><br>
내용 : <br>
<textarea cols = "30" rows = "5"></textarea><br>
<input type = "submit">
</form><br>
</div>
</body>
</html>