-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (104 loc) · 4.19 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
<!DOCTYPE html>
<html lang="it">
<!--Titolo esplicativo del sito-->
<head>
<title> Il mio viaggio a Londra</title>
</head>
<body>
<!--Titolo nella pagina web-->
<section>
<h1>Il mio Viaggio a Londra</h1>
</section>
<!--foto paesaggio di un paesaggio di Londra con linea divisoria-->
<section>
<img src="Img/pexels-bill-emrich-230794-0.jpg" alt="ruota viola">
<img src="Img/pexels-bill-emrich-230794-1.jpg" alt="panorama 1">
<img src="Img/pexels-bill-emrich-230794-2.jpg" alt="panorama 2">
<hr>
</section>
<!--inserimento tabella costi del viaggio-->
<section>
<h2>Le mie spese</h2>
<table>
<thead>
<tr>
<th> Numero</th>
<th> Descrizione</th>
<th> Costo</th>
</tr>
</thead>
<tbody>
<tr>
<!--prima riga della mia tabella-->
<td>1</td>
<td>Biglietto Aereo</td>
<td>120€</td>
</tr>
<!--seconda riga della mia tabella-->
<tr>
<td>1</td>
<td>Biglietto Aereo</td>
<td>120€</td>
</tr>
<!--terza riga della mia tabella-->
<tr>
<td>1</td>
<td>Biglietto Aereo</td>
<td>120€</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Totale</td>
<td></td>
<td>360€</td>
</tr>
</tfoot>
</table>
<hr>
</section>
<!--Cosa da fare a Londra-->
<section>
<h3>Cose da fare</h3>
<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 tipico Fish and Chips inglese ✔</li>
</ul>
<hr>
</section>
<!--inserimento info-->
<section>
<h2>info utili:</h2>
<ol>
<li>Numeri di emergenza
<ul>
<li> <b>999</b>- Emergenza</li>
<li> <b>101</b>- Numero Polizia</li>
<li> <b>111</b>- Numero assistenza medica</li>
</ul>
</li>
<li>hotel
<ul>
<li> <b>Nome hotel</b>: Buckingham Palace</li>
<li> <b>INdirizzo Hotel</b>:Westminster,London SW1A 1AA,Regno Unito</li>
</ul>
</li>
<li>Aereo
<ul>
<li> <b>Volo di Andata</b>: YI234X, ore 9.30 da Milano Malpensa</li>
<li> <b>Volo di Ritorno</b>:YI236X, ore 18.30 da London Heatthrow</li>
</ul>
</li>
</ol>
<hr>
</section>
<!--Footer-->
<footer>
<h2>Le foto</h2>
<img src="https://pokerstarscareers.com/wp-content/uploads/2020/01/London-Wider-Area-e1597319992670-400x400.jpg" alt="ponte di notte">
<img src="https://www.abta.com/sites/default/files/styles/large/public/media/uploads/london-400x400-compressor_0.jpg" alt="galleria">
</footer>
</body>
</html>