-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (32 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TODO APP</title>
<link rel="stylesheet" href="./todo.css"></link>
</head>
<body>
<div class="main">
<div class="color"></div>
<div class="color"></div>
<div class="color"></div>
<div class="body">
<div id="title">
<h1>to-do app</h1>
<p>(<b>CLICK</b> on item to <strike>strike through</strike> and <b>DOUBLE CLICK</b> to remove)</p>
</div>
<div id="app">
<ul>
</ul>
<br>
<input id="input" type="text" name="newItem" class="newItem" placeholder="Add Item"/>
<button type="submit" class="submit">Add</button>
</div>
<br>
<button type="submit" class="del" style="border-color: red; margin-left: 32%; font-size: 10px;">Delete All</button>
</div>
</div>
<script src="./todo.js"></script>
</body>
</html>