-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Taking Booleaners from A to B</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<img class="logo" src="images/logo.png">
<h1 class="title">Taking Booleaners from A to B</h1>
</header>
<nav>
<button type="button">Prenota</button>
<button type="button">Termina Prenotazione</button>
<button type="button">Accendi Luci</button>
</nav>
<main>
<div>
<input type="checkbox"><h2>Monopattino Gino22</h2>
<h5> Via Guadalametri - a 220 metri da te</h5>
<p>Stato carica:</p>
<div class="charge1">
</div>
</div>
<div>
<input type="checkbox"><h2>Monopattino Mike24</h2>
<h5> Via Ricciardoni - a 420 metri da te</h5>
<p>Stato carica:</p>
<div class="charge2">
</div>
</div>
<div>
<input type="checkbox"><h2>Monopattino Fede154</h2>
<h5> Via Mentarini - a 490 metri da te</h5>
<p>Stato carica:</p>
<div class="charge3">
</div>
</div>
</main>
</div>
</body>
</html>