-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathListaLuoghi.html
112 lines (111 loc) · 5.02 KB
/
ListaLuoghi.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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Import Del Css -->
<link rel="stylesheet" href="css/main.css">
<!-- Import Del Favicon -->
<link rel="shortcut icon" href="media/favicon.webp" type="image/x-icon">
<!-- Import Del Font Google Raleway-->
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet'>
<script src="js/sidebar.js"></script>
<title>WTravel</title>
</head>
<body>
<header>
<h1>WTravel</h1>
</header>
<!-- Menu -->
<nav>
<a id="ToggleSBO" href="javascript:void(0)" onclick="opSidebar();"><sbo>☰</sbo></a>
<a id="ToggleSBC" href="javascript:void(0)" onclick="clSidebar();"><sbo>✖</sbo></a>
<a href="ListaLuoghi.html"><selected>Luoghi</selected></a>
<a href="index.html">Home</a>
<a href="contact.html">Contatti</a>
</nav>
<!-- /Menu -->
<div id="Full-Container">
<!--SideBar-->
<aside id="left">
<div id="sbbs">
<a href="Luoghi/Kingston.html">Kingston</a>
<a href="Luoghi/Tokyo.html">Tokyo</a>
<a href="Luoghi/Mosca.html">Mosca</a>
<a href="Luoghi/Kyoto.html">Kyoto</a>
<a href="Luoghi/Parigi.html">Parigi</a>
<a href="Luoghi/Torino.html">Torino</a>
</div>
</aside>
<!--/SideBar-->
<div id="right">
<!-- Section -->
<section>
<h3>Luoghi Visitati</h3>
<div class="cards">
<!--Card del Luogo-->
<div class="card">
<a href="Luoghi/Kingston.html">
<img src="media/localita/Kingston/Kingston.webp" alt="Immagine di Kingston">
<p class="ctext">Kingston</p>
</a>
</div>
<!--/Card del Luogo-->
<!--Card del Luogo-->
<div class="card">
<a href="Luoghi/Tokyo.html">
<img src="media/localita/Tokyo/Tokyo.webp" alt="Immagine di Tokyo">
<p class="ctext">Tokyo</p>
</a>
</div>
<!--/Card del Luogo-->
<!--Card del Luogo-->
<div class="card">
<a href="Luoghi/Mosca.html">
<img src="media/localita/Mosca/Mosca.webp" alt="Immagine di Mosca">
<p class="ctext">Mosca</p>
</a>
</div>
<!--/Card del Luogo-->
<br>
<!--Card del Luogo-->
<div class="card">
<a href="Luoghi/Kyoto.html">
<img src="media/localita/Kyoto/kyoto.webp" alt="Immagine di Kyoto">
<p class="ctext">Kyoto</p>
</a>
</div>
<!--/Card del Luogo-->
<!--Card del Luogo-->
<div class="card">
<a href="Luoghi/Parigi.html">
<img src="media/localita/Parigi/Parigi.webp" alt="Immagine di Parigi">
<p class="ctext">Parigi</p>
</a>
</div>
<!--Card del Luogo-->
<!--/Card del Luogo-->
<div class="card">
<a href="Luoghi/Torino.html">
<img src="media/localita/Torino/Torino.webp" alt="Immagine di Torino">
<p class="ctext">Torino</p>
</a>
</div>
<!--/Card del Luogo-->
</div>
</section>
<!-- /Section -->
</div>
</div>
<!-- Footer -->
<footer>
<div class="footer-space"> </div>
<div class="footer-text">
<p>Make with <b>❤</b> By <b>Andrea Gabriele</b>.</p>
<p>Copyright © 2020 WertyNetworks - All Rights Reserved.</p>
<p>Tel: <a href="tel:+393214321245">+39 321-432-1245</a> Mail: <a href="mailto:admin@wertynetworks.com">admin@wertynetworks.com</a></p>
</div>
</footer>
<!-- /Footer -->
</body>
</html>