-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (50 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coding Challenge</title>
<link rel="stylesheet" href="Style.css">
</head>
<body>
<div> <!--sfondo nero-->
<header>
<img src="logo.png">
<h1>Taking Booleaners from A to B</h1>
<!--inizio input intestazione-->
<div id="barra-verde">
<input type="submit" value="Prenota">
<input type="submit" value="Termina Prenotazioni">
<input type="submit" value="Accendi Luci">
</div>
</header>
<!--inizio descrizione monopattini-->
<main>
<!--Primo-->
<section>
<input type="checkbox">
<h2>Monopattino Gino22</h2>
<div class="freccia"> Via Guadalametri - a 220 metri da te</div>
<h3>Stato Craica:</h3>
<div id="caricamento1"></div>
</section>
<!--Secondo-->
<section>
<input type="checkbox">
<h2>Monopattino Mike24</h2>
<div class="freccia"> Via Ricciardoni - a 220 metri da te</div>
<h3>Stato Craica:</h3>
<div id="caricamento2"></div>
</section>
<!--Terzo-->
<section>
<input type="checkbox">
<h2>Monopattino Fede154</h2>
<div class="freccia"> Via Mentarini - a 220 metri da te</div>
<h3>Stato Craica:</h3>
<div id="caricamento3"></div>
</section>
</main>
</div>
</body>
</html>