-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (49 loc) · 1.62 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
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Scooter Lim</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<!-- Intestazione -->
<header>
<img src="img/logo.png">
<h1>Taking Booleaners from A to B</h1>
</header>
<!-- Barra Navigazione -->
<nav>
<button type="button">Prenota</button>
<button type="button">Termina Prenotazione</button>
<button type="button">Accendi Luci</button>
</nav>
<!-- Corpo Principale -->
<main>
<!-- Monopattino 1 -->
<input type="checkbox">
<h2>Monopattino Gino22</h2>
<br>
<span class="arrow"> Via Guadalametri - a 220 metri da te<br>Stato carica:<br></span>
<div class="charge gino22"></div>
<br>
<!-- Monopattino 2 -->
<input type="checkbox">
<h2>Monopattino Mike24</h2>
<br>
<span class="arrow"> Via Ricciardoni - a 420 metri da te<br>Stato carica:<br></span>
<div class="charge mike24"></div>
<br>
<!-- Monopattino 3 -->
<input type="checkbox">
<h2>Monopattino Fede154</h2>
<br>
<span class="arrow"> Via Mentarini - a 490 metri da te<br>Stato carica:<br></span>
<div class="charge fede154"></div>
</main>
</div>
</body>
</html>