-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (46 loc) · 1.81 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="TodoApp.css">
<link rel="stylesheet" href="TodoAppDark.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="stylesheet" href="./fontawesome-free-6.0.0-web/css/all.css">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Barlow:wght@300;400&family=Josefin+Sans:wght@300;400;700&family=Roboto:wght@500&display=swap"
rel="stylesheet">
<title>Frontend Mentor | Todo app</title>
</head>
<body>
<!--Inizio dell'app-->
<header>
<div class="titolo">
<h1>todo</h1>
<img id="Moon"class="Moon" src="images/icon-moon.svg" alt="Moon-NotFound">
<img id="Sun" class="Sun" src="images/icon-sun.svg" alt="Sun-NotFound">
</div>
<!--Campo input-->
<div class="input">
<input class="cerca" id="cerca" type="search" placeholder="Create a new Todo...">
</div>
<ul class="listatodo" id="listaTodo">
</ul>
<!--Lista degli obbiettivi-->
<ul class="obj">
<li class="items">
<span id="nTodo"> 0 items</span>
<ul class="items">
<li><a href="#" id="tutti">all</a></li>
<li><a href="#" id="attivi">active</a></li>
<li><a href="#" id="completati">completed</a></li>
</ul>
<a href="#" id="clean">clear completed</a>
</li>
</ul>
</header>
</body>
<script src="TodoApp.js"></script>
</html>