-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (35 loc) · 1.15 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="bootstrap.min.css" >
<link rel="stylesheet" href="app.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Bowlby+One+SC" rel="stylesheet">
<title>King Todo</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-8 ml-auto mr-auto">
<div class="todo-app">
<header class="app-header">
<h2>King Todo</h2>
</header>
<form id="inputform">
<input type="text" class="newtodo" placeholder="Type & Hit Enter">
</form>
<ul class="list-group" id="todolist-wrapper"></ul>
</div>
<div class="text-center">
<button class="clear-done">Clear Done</button>
</div>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>