-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (48 loc) · 1.41 KB
/
index.html
File metadata and controls
50 lines (48 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Lim</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
</head>
<body>
<div class="riquadro">
<!-- logo scritta -->
<header>
<img src="logo.png">
<h1>Taking Booleaners from A to B</h1>
</header>
<!-- barra verde -->
<nav>
<button type="button">Prenota</button>
<button type="button">Termina Prenotazione</button>
<button type="button">Accendi Luci</button>
</nav>
<!-- utenti -->
<main>
<div>
<input type="checkbox">
<h2>Monopattino Gino22</h2>
<div>↦ Via Guadalametri - a 220 metri da te</div>
<div>Stato carica:</div>
<div class="barra orange"></div>
</div>
<div>
<input type="checkbox">
<h2>Monopattino Mike24</h2>
<div>↦ Via Ricciardoni - a 420 metri da te</div>
<div>Stato carica:</div>
<div class="barra green"></div>
</div>
<div>
<input type="checkbox">
<h2>Monopattino Fede154</h2>
<div>↦ Via Mentarini - a 490 metri da te</div>
<div>Stato carica:</div>
<div class="barra brown"></div>
</div>
</main>
</div>
</body>
</html>