-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (65 loc) · 2.48 KB
/
index.html
File metadata and controls
80 lines (65 loc) · 2.48 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To Do List</title>
<!-- links -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="scss/style.css">
</head>
<body>
<!-- just for the first time user use the app -->
<div class="Launch-popup center">
<img src="images/TO-DO-LIST ILLUSTRATION-1.svg" alt="to do list illustration">
<a style="visibility: hidden" href="https://iradesign.io">Illustrations by IRA Design</a>
<div class="Launch-popup__text">
<h3>Get Your life Organized</h3>
<h4>with this app you will be able to organize and manage your time during the day in the easiets way!</h4>
</div>
<button>Get Started</button>
</div>
<!-- to do list -->
<main>
<!-- * questo div serve solo per far in modo che la lista stia su -->
<div>
<div class="date">
<div class="date__inline">
<!-- weekday -->
<p class="semibold" id="week-name"></p>
<!-- number -->
<p class="small" id="day-number"></p>
</div>
<!-- month -->
<p class="month" id="month"></p>
<h2>Today's Task</h2>
</div>
<!-- list -->
<ul>
<!-- ? PROVA CON INPUT -->
<!-- <li>
<label>
<input type="checkbox">
<p class="list-item">capra</p>
<div class="delete">
<img src="images/delete.svg" alt="delete icon">
</div>
</label>
</li> -->
</ul>
</div>
<button class="addTask">Add Task</button>
</main>
<div class="modal-add-task">
<div class="popup">
<h2>New Task</h2>
<input type="text" placeholder="Write new task..." maxlength="16">
<input type="submit" value="SAVE"></input>
</div>
</div>
</body>
<script src="script.js"></script>
</html>