-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (36 loc) · 1.21 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>
<head>
<title>Task Master</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Gloria+Hallelujah" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Architects+Daughter" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Coming+Soon" rel="stylesheet">
</head>
<body>
<div id="notepad">
<h1 id="myHeading">Task Master</h1>
<p>Create your own to do list..</p>
<button id="toggleList">Hide list</button>
<div class ="list">
<p class="description">My To Do List:</p>
<input type="text" class="description">
<button class="description" id="changeButton">Change list description</button>
<ul>
<li>Tidy Room
</li>
<li>Clean Car
</li>
<li>Buy Groceries
</li>
<li>Visit Grandma
</li>
</ul>
<input type="text" class="addItemInput">
<button class="addItemButton">Add item</button>
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>