-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (35 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<html lang="en"></html>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles.css" />
<meta name="description" content="" />
<title>Do the Things</title>
</head>
<body>
<header>
<h1>Do the Things</h1>
</header>
<img src="./undraw_completed_tasks_vs6q.svg" />
<main>
<div class="warning">Please enter some text</div>
<form id="form-add-todo">
<input type="text" class="todo-input focusable" />
<button id="button-add-todo" class="todo-button focusable" type="submit">
<img class="icon" src="./add.svg" />
</button>
</form>
<div class="select">
<select name="todos" class="filter-to-do focusable">
<option value="all">All</option>
<option value="completed">Completed</option>
<option value="uncompleted">Uncompleted</option>
</select>
</div>
<ul class="todo-list"></ul>
</main>
</html>
<script src="script.js"></script>
<script src="script.test.js"></script>