-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (47 loc) · 1.25 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
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ToDo List</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
<!-- social links for refinedguides.com -->
<script
src="https://refinedguides.com/assets/social.js?linkColor=%232643c4&textColor=%23333"
defer
></script>
</head>
<body>
<div class="container">
<h1>ToDo List</h1>
<form class="todo-form">
<input
type="text"
id="todoInput"
placeholder="What's the plan today?"
/>
<button>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="none"
viewBox="0 0 24 24"
stroke-width="2"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M12 4.5v15m7.5-7.5h-15"
/>
</svg>
</button>
</form>
<div id="statusText"></div>
<ul id="todoList"></ul>
</div>
</body>
</html>