-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (111 loc) · 4.1 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Viaggio a Londra</title>
</head>
<body>
<!-- Inseriamo il titolo -->
<header>
<h1>Il Mio viaggio a Londra</h1>
<!-- inseriamo le immagini -->
<img src="img/img/img/pexels-bill-emrich-230794-0.jpg" alt="Panoramic Wheel"
><img src="img/img/img/pexels-bill-emrich-230794-1.jpg" alt="London Bridge"
><img src="img/img/img/pexels-bill-emrich-230794-2.jpg" alt="Buckingham Palace">
<hr>
</header>
<!-- suddividiamo il main in 3 sezioni -->
<main>
<!-- Sezione 1 -->
<section>
<h2>Le mie spese</h2>
</section>
<!-- Sezione 2 -->
<section>
<!-- creiamo una table -->
<table>
<!-- intestazione table -->
<thead>
<tr>
<th>Numero</th>
<th>Descrizione</th>
<th>Costo</th>
</tr>
</thead>
<!-- /intestazione table -->
<!-- body table -->
<tbody>
<tr>
<td>1</td>
<td>Biglietto Aereo</td>
<td> 120€</td>
</tr>
<tr>
<td>1</td>
<td>Biglietto Aereo</td>
<td>120€</td>
</tr>
<tr>
<td>1</td>
<td>Biglietto Aereo</td>
<td>120€</td>
</tr>
<tfoot>
<tr>
<!-- inseriamo colspan per unire le celle adiacenti -->
<td colspan="2">Totale</td>
<td>360€</td>
</tr>
</tfoot>
</tbody>
</table>
<hr>
</section>
<!-- Sezione 3 -->
<section>
<h3>Cose da fare </h3>
<!-- inseriamo una lista non ordinata -->
<ul>
<li>Visitare la Tower of London ✗</li>
<li>Visitare greenwich ✓</li>
<li>Ascoltare un artista di strada a Covent Garden✓</li>
<li>Mangiare il tipo Fish and Chips inglese ✗</li>
</ul>
<hr>
</section>
<!-- Sezione 4 -->
<section>
<h3>Info utili:</h3>
<!-- creiamo una lista ordinata -->
<ol>
<li>
<span>Numeri Utili di emergenza</span>
<ul>
<li><strong>999</strong> - Emergenza</li>
<li><strong>101</strong> - Numero polizia</li>
<li><strong>111</strong> - Numero assistenza medica</li>
</ul>
</li>
<li>
<span>Hotel</span>
<ul>
<li><strong>Nome hotel:</strong>Buckingham palace</li>
<li><strong>Indirizzo hotel:</strong>Westminster,London SW1AA,Regno unito</li>
</ul>
</li>
<li>
<span>Aereo</span>
<ul><strong>Volo di Andata:</strong> YI234X, ore 9.30 da Milano Malpensa</ul>
<ul><strong>Volo di Ritorno:</strong> YI236X, ore 18.30 da London Heathrow</ul>
</li>
</ol>
<hr>
<h3>Le Foto</h3>
<!-- inseriamo altre immagini -->
<img src="https://www.abta.com/sites/default/files/styles/large/public/media/uploads/london-400x400-compressor_0.jpg" alt="">
<img src="https://imgc.allpostersimages.com/img/posters/evening-tower-bridge-and-river-thames-london_u-L-P2QVZJ0.jpg?artPerspective=n" alt="">
</section>
</main>
</body>
</html>