-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (81 loc) · 2.75 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="it" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500;900&display=swap" rel="stylesheet"> <link rel="stylesheet" href="./assets/css/master.css">
<title></title>
</head>
<body>
<!-- prova github -->
<!-- logo e titolo -->
<header>
<img class="centrale" src="./assets/img/logo.png" alt="logo">
<h1 class="inline-block centrale">Toboolist</h1>
</header>
<div class="container">
<!-- pulsanti -->
<nav>
<input id="blu" type="button" name="" value="Add Task">
<input id="grey" type="button" disabled name="" value="Add Section">
</nav>
<hr>
<br>
<!-- lista vera e propria -->
<main>
<ul>
<li>
<h3>New Task</h3>
<ul>
<li class="check checked">
Quarterly Newsletter
<a class="editorial" href="https://www.google.it/">Editorial</a>
</li>
</ul>
</li>
<li>
<h3>Today</h3>
<ul>
<li class="check checked">
Recruiting blog post
<a class="editorial" href="https://www.google.it/">Editorial</a>
</li>
<li class="check checked">
Mobile app launch
<a class="q1" href="https://www.google.it/">Q1 Goals</a>
</li>
<li class="check unchecked">
Interview John H.
<a class="recruiting" href="https://www.google.it/">Recruiting</a>
</li>
<li class="check checked">
Summit update to mobile storefronts
<a class="mobile" href="https://www.google.it/">Mobile</a>
</li>
</ul>
</li>
<li>
<h3>Upcoming</h3>
<ul>
<li class="check unchecked">
Schedule meeting with Alex
</li>
<li class="check checked">
Homepage refresh
<a class="website" href="https://www.google.it/">Website</a>
</li>
<li class="check checked">
Onboard new Sales team members
<a class="sales" href="https://www.google.it/">Sales</a>
</li>
<li class="check checked">
Review editorial calendar
<a class="editorial" href="https://www.google.it/">Editorial</a>
</li>
</ul>
</li>
</ul>
</main>
</div>
</body>
</html>