-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Roboto:100,400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/style.css">
<title>Simple Todo App</title>
</head>
<body>
<div class="container">
<section id="todos">
<h1>Simple Todo App</h1>
<p class="list-controls">
<button id="clear-all" class="button-link">Remove completed</button> |
<button id="complete-all" class="button-link">Complete all</button>
</p>
<ul id="todo-list">
</ul>
<form id="todo-form">
<input class="form-element" type="text" name="todoName" id="todo-name-input" placeholder="Type your Todo here...">
<button class="form-element button" id="add-todo" type="submit">Add</button>
</form>
</section>
<p class="footer"><a href="https://www.pexels.com/de-de/foto/bildschirm-bleistift-drinnen-elektrik-370474/">Background Image</a> by <a href="https://www.pexels.com/de-de/@nurseryart">Porapak Apichodilok</a></p>
</div>
</body>
<script src="./js/main.js" type="module"></script>
</html>