-
Notifications
You must be signed in to change notification settings - Fork 0
/
ammissione.html
60 lines (50 loc) · 1.69 KB
/
ammissione.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<link rel="stylesheet" href="style.css">
<meta charset="utf-8">
<title>Monopattini Lim</title>
</head>
<body>
<div class="contenitore">
<header>
<!-- Logo e titolo -->
<img src="logo.png" id="logo">
<h1>Taking Booleaners from A to B</h1>
</header>
<nav class="tasti">
<!-- Tasti di navigazione -->
<button type="button">Prenota</button>
<button type="button">Termina Prenotazione</button>
<button type="button">Accendi Luci</button>
</nav>
<main>
<!-- Corpo della pagina -->
<div class="paragraph">
<input type="checkbox">
<span class="title">Monopattino Gino22</span>
<span class="subtitle">↦ Via Guadalametri - a 220 metri da te</span>
<span class="subtitle">Stato carica</span>
<div id="rettangolo1">
</div>
</div>
<div class="paragraph">
<input type="checkbox">
<span class="title">Monopattino Mike24</span>
<span class="subtitle">↦ Via Ricciardoni - a 420 metri da te</span>
<span class="subtitle">Stato carica</span>
<div id="rettangolo2">
</div>
</div>
<div class="paragraph">
<input type="checkbox">
<span class="title">Monopattino Fede154</span>
<span class="subtitle">↦ Via Mentarini - a 490 metri da te</span>
<span class="subtitle">Stato carica</span>
<div id="rettangolo3">
</div>
</div>
</main>
</div>
</body>
</html>