-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (29 loc) · 1.08 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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tdd todo</title>
<link rel="stylesheet" href="./style.css">
<script src="https://use.fontawesome.com/5baabe07ac.js"></script>
<link href="https://fonts.googleapis.com/css?family= Oswald|Roboto+Condensed" rel="stylesheet">
</head>
<body>
<div class="container">
<h1 class="container__header">To Do</h1>
<form class="todoform" id="add-todo">
<input class="todoform__input" type="text" name="description" value="" placeholder="Do Something!" pattern=".{1,}" required title = "">
<input class="todoform__button" type="submit" name="" value="+">
</form>
<div id = "todo-container">
<ul class="todo">
</ul>
</div>
<footer class="footer">
<button aria-label="sort todo's button" class="sort" id="sortId">Sort</button>
</footer>
</div>
</body>
<script type="text/javascript" src = "./logic.js"></script>
<script type="text/javascript" src = "./dom.js"></script>
</html>