generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgreece.html
145 lines (123 loc) · 4.96 KB
/
greece.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en-US">
<!-- Head section -->
<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" />
<meta name="description" content="Travel agency. Offering tour packages for individuals or groups." />
<meta name="keywords" content="holiday, travel, best value, package holidays, book cheap holidays" />
<title>Travel Destinations</title>
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="icon" type="image/x-icon" href="assets/images/favicon/favicon.ico" />
<link rel="apple-touch-icon" href="assets/images/favicon/apple-touch-icon.png" />
</head>
<!-- Body section -->
<body>
<!-- Hero video -->
<div class="video-container">
<video class="fullscreen-video" poster="assets/images/poster_big.webp" loop muted autoplay>
<source src="assets/images/hero_1080.mp4" type="video/mp4" />
</video>
</div>
<!-- Header section -->
<header>
<!-- Logo -->
<a href="index.html">
<img id="logo" src="assets/images/logo_new.webp" alt="Travel Destinations company logo" />
</a>
<!--Nav menu - adapted for this project from:
https://moderncss.dev/css-only-accessible-dropdown-navigation-menu/ -->
<nav aria-label="Main Navigation">
<ul>
<li>
<a href="index.html" aria-label="Click here to open Homepage">Home</a>
</li>
<li class="dropdown">
<button type="button" class="dropdown__title" aria-label="Destinations">
Destinations
</button>
<ul class="dropdown__menu">
<li>
<a href="italy.html" aria-label="Click here to open Italy page">Italy</a>
</li>
<li>
<a href="spain.html" aria-label="Click here to open Spain page">Spain</a>
</li>
<li>
<a href="portugal.html" aria-label="Click here to open Portugal page">Portugal</a>
</li>
<li>
<a href="greece.html" aria-label="Click here to open Greece page">Greece</a>
</li>
<li>
<a href="turkey.html" aria-label="Click here to open Turkey page">Turkey</a>
</li>
<li>
<a href="croatia.html" aria-label="Click here to open Croatia page">Croatia</a>
</li>
</ul>
</li>
<li>
<a href="contact.html" aria-label="Click here to open Contact us page">Contact us</a>
</li>
</ul>
</nav>
</header>
<!-- Main content -->
<main>
<!-- Description -->
<h1>Greece</h1>
<div class="country_description">
<p>
The roots of Western culture are in Greece. Step into the ring where
Olympians first competed. Climb steps hewn out of stone to Meteora’s
monasteries, perched atop towering rocks. Contemplate the oracle’s
insights from the grandeur of Delphi, take in a starlit drama at an
ancient outdoor theatre and be stunned by massive marble sculptures
dredged up from the Aegean. But then you’ll encounter bold modern art,
the melancholic throb of rembetika (blues songs) and artisans creating
new work from traditional techniques. Greece has endless cultural
pursuits and a calendar bursting with festivals, holidays and
exhibits.
</p>
</div>
<!-- Coutries container -->
<div class="countries_page_container">
<div class="countries_page">
<img src="assets/images/greece_big.webp" alt="Holiday houses on coastline" />
</div>
<div class="iframe-container">
<iframe aria-label="10 Best places to visit in Greece"
src="https://www.youtube.com/embed/2X61DHwtVe4?&theme=dark&autohide=2&cc_load_policy=1&modestbranding=1&showinfo=0&rel=0"></iframe>
</div>
</div>
<!-- Footer section -->
<footer>
<ul class="social-networks">
<li>
<a href="https://www.facebook.com" aria-label="Go to our facebook page (opens in new tab)" target="_blank"><i
class="fab fa-facebook"></i></a>
</li>
<li>
<a href="https://www.twitter.com " aria-label="Go to our twitter page (opens in new tab)" target="_blank"><i
class="fab fa-twitter-square"></i></a>
</li>
<li>
<a href="https://www.youtube.com" aria-label="Go to our youtube page (opens in new tab)" target="_blank"><i
class="fab fa-youtube"></i></a>
</li>
<li>
<a href="https://www.instagram.com" aria-label="Go to our instagram page (opens in new tab)"
target="_blank"><i class="fab fa-instagram"></i></a>
</li>
</ul>
<p>
*This site is for educational purposes only, all images and videos
remain the property of the owners.
</p>
</footer>
</main>
<script src="https://kit.fontawesome.com/add0cc32e5.js" crossorigin="anonymous"></script>
</body>
</html>