-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (38 loc) · 999 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>To Do List</title>
<link rel="stylesheet" href="./styles/style.css" />
</head>
<body>
<div>
<button id="button">
<img src="./images/moon.svg" alt="">
</button>
<header class="todolist__title">
<h1>To-Do List</h1>
</header>
<section class="todolist__input">
<div class="container">
<input id="inputTask" type="text" placeholder="Write your task and type enter" />
</div>
</section>
<section class="todolist__list">
<div class="container">
<ul id="list" class="list"></ul>
</div>
</section>
</div>
<footer class="todolist__footer">
<span>
Made by
<a href="https://github.com/luhoro" target="_blank" name="Meu github">
Luisa Horowitz
</a>
</span>
</footer>
<script src="./js/main.js"></script>
</body>
</html>