-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (118 loc) · 3.72 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
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Il mio viaggio a Londra</title>
</head>
<body>
<header>
<h1>
<strong>Il mio Viaggio a Londra</strong>
</h1>
<img src="img/pexels-bill-emrich-230794-0.jpg" alt="London eye">
<img src="img/pexels-bill-emrich-230794-1.jpg" alt="London eye">
<img src="img/pexels-bill-emrich-230794-2.jpg" alt="London eye">
</header>
<hr>
<h3>
Le mie spese
</h3>
<!-- inizio tabella -->
<table>
<thead>
<tr>
<th>
<h3>Numero</h3>
</th>
<th>
<h3>Descrizione</h3>
</th>
<th>
<h3>Costo</h3>
</th>
</tr>
</thead>
<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>
</tbody>
<tfoot>
<td>Totale</td>
<td></td>
<td>360$</td>
</tfoot>
</table>
<!-- fine tabella -->
<hr>
<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 Garen✓</li>
<li>Mangiare il tipico Fish and Chips inglese✗</li>
</ul>
</section>
<hr>
<section>
<h3>
Info Utili:
</h3>
<ol>
<li>Numeri utili di emergenza</li>
<ul>
<li>
<strong>999</strong>
- Emergenza</li>
<li>
<strong>101</strong>
- Numero polizia</li>
<li>
<strong>111</strong>
- Numero assistenza medica</li>
</ul>
<li>Hotel</li>
<ul>
<li>
<strong>Nome hotel:</strong>Buckingham Palace</li>
<li>
<strong>Indirizzo hotel</strong>Westminster, London SW1A 1AA, Regno Unito</li>
</ul>
<li>Aereo</li>
<ul>
<li>
<strong>Volo di Andata:</strong>Y1234X, ore 9.30 da Milano Malpensa</li>
<li>
<strong>Indirizzo hotel:</strong>Y1236X, ore 18.30 da Londra Hearthrow</li>
</ul>
</ol>
</section>
<hr>
<h1>
Le foto
</h1>
<img
src="https://www.abta.com/sites/default/files/styles/large/public/media/uploads/london-400x400-compressor_0.jpg"
alt="foto artistiche">
<img
src="https://pokerstarscareers.com/wp-content/uploads/2020/01/London-Wider-Area-e1597319992670-400x400.jpg"
alt="foto artistiche">
</body>
</html>