-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="coding challenge.css">
<title>Coding challenge</title>
</head>
<body>
<section>
<header>
<!--logo e intestazione-->
<div class="intestazione">
<img src="logo.png">
<h1> Taking booleaners from A to B </h1>
</div>
<!--bottoni-->
<div class="bordo">
<button type="button" prenotazione="button">Prenota</button>
<button type="button" name="chiusura prenostazione">Termina Prenotazione</button>
<button type="button" name="accensione luci">Accendi Luci</button>
</div>
</header>
<main>
<!-- elementi da selezionare-->
<div>
<input type="checkbox">
<span>Monopattino Gino22</span>
<h4>Via Guadalametri - a 220m da te</h4>
<h5>Stato carica:</h5>
<div id="caricamento1">
<h2></h2>
</div>
<input type="checkbox">
<span>Monopattino Mike24</span>
<h4>Via Ricciardoni - a 420m da te</h4>
<h5>Stato carica:</h5>
<div id="caricamento2">
<h2></h2>
</div>
<input type="checkbox">
<span>Monopattino Fede154</span>
<h4>Via Mentarini - a 490m da te</h4>
<h5>Stato carica:</h5>
<div id="caricamento3">
<h2></h2>
</div>
</div>
</main>
</section>
</body>
</html>