-
Notifications
You must be signed in to change notification settings - Fork 0
/
list.html
38 lines (33 loc) · 825 Bytes
/
list.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
<!DOCTYPE html>
<!-- styles -->
<link rel="stylesheet" type="text/css" href="style.css">
<html>
<head>
<title>ToDo App</title>
<meta charset="UTF-8">
<!-- fonts -->
<link href="https://fonts.googleapies.com/css?family=Roboto|Roboto+Slab"
rel="stylesheet">
</head>
<body>
<header>
<h1>My To Do Lists</h1>
<nav>
<a href="index.html">main</a> -
<a href="settings.html">settings</a>
</nav>
</header>
<div id="todo-lists">
<div class = "list">
<h2 class = "list-title"> Groceries </h2>
<ol>
<li>Eggs</li>
<li>Milk</li>
<li>Cereal</li>
</ol>
</div>
<input type="text"></input>
<button>Add Item</button>
</div>
</body>
</html>