-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 859 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>To-do List</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
</head>
<body>
<div id="outer-container">
<div id="top-container">
<h1>To-do List</h1>
<div id="input-container">
<input id="todo-name" type="text" name="todo-name" required maxlength="30" placeholder="What do you want to do today...">
<button id="create-todo" name="create-todo" type="button">Create To-do</button>
</div>
</div>
<div class="divider"></div>
<div id="bottom-container">
<ul id="todo-ulist"></ul>
</div>
</div>
</body>
</html>