-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtemplate.html
More file actions
40 lines (40 loc) · 1.3 KB
/
template.html
File metadata and controls
40 lines (40 loc) · 1.3 KB
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
<html>
<head>
<title>To do template</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="./css/common.css">
</head>
<body>
<div class="container">
<div class="page-header">
<h1>To do list</h1>
</div>
<div class="input-group input-group-lg">
<input type="text" class="form-control" placeholder="할 일을 입력해주세요" />
<span class="input-group-btn">
<button class="btn btn-primary" type="button">등록</button>
</span>
</div>
<hr>
<ul>
<li>
<span>이것도 해야 되고</span>
<span class="btn-container"><a href="#">삭제</a></span>
</li>
<li>
<span>저것도 해야 되고</span>
<span class="btn-container"><a href="#">삭제</a></span>
</li>
<li>
<span>그것도 해야 되고</span>
<span class="btn-container"><a href="#">삭제</a></span>
</li>
<li>
<span>언제 다 하나</span>
<span class="btn-container"><a href="#">삭제</a></span>
</li>
</ul>
</div>
</body>
</html>