-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (86 loc) · 2.55 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
<!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>London trip</title>
</head>
<body>
<header>
<h1>Il mio viaggio a Londra</h1>
<img src="img/foto1.jpg" alt="">
<img src="img/foto2.jpg" alt="">
<img src="img/foto3.jpg" alt="">
<hr>
</header>
<main>
<h2>Le mie spese</h2>
<table>
<tr>
<td>Numero</td>
<td>Descrizione</td>
<td>Costo</td>
</tr>
<tr>
<th>1</th>
<th>Biglietto aereo</th>
<th>120</th>
</tr>
<tr>
<th>1</th>
<th>Biglietto aereo</th>
<th>120</th>
</tr>
<tr>
<th>1</th>
<th>Biglietto aereo</th>
<th>120</th>
</tr>
<tr>
<th>Totale</th>
<th></th>
<th>360</th>
</tr>
</table>
<hr>
<h2>Cose da fare</h2>
<ul>
<li>Visitare la tower of London ✓</li>
<li>Visitare Greenwich ☓</li>
<li>Ascoltare un artista di strada a Coven Garden ✓</li>
<li>Mangiare il tipico fish and chips Inglese ☓</li>
</ul>
<hr>
<h2>Info utili :</h2>
<ol>
<li>Numeri di emergenza</li>
</ol>
<ul>
<li><strong>999-</strong>Emergenza</li>
<li><strong>101-</strong>numero polizia</li>
<li><strong>110-</strong>numero assistanza medica</li>
</ul>
<ol>
<li>Hotel</li>
</ol>
<ul>
<li><strong>Nome Hotel-</strong>Buckingam Palace</li>
<li><strong>Indirizzo Hotel-</strong>Westminster</li>
</ul>
<ol>
<li>Aereo</li>
</ol>
<ul>
<li><strong>Volo di andata-</strong>9:30 da Milano Malpensa</li>
<li><strong>Volo di ritorno-</strong>18:30 London Heathrow</li>
</ul>
<hr>
</main>
<footer>
<h2>Le foto</h2>
<img src="https://www.abta.com/sites/default/files/styles/large/public/media/uploads/london-400x400-compressor_0.jpg" alt="">
<img src="https://pokerstarscareers.com/wp-content/uploads/2020/01/London-Wider-Area-e1597319992670-400x400.jpg" alt="">
</footer>
</body>
</html>