-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (69 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@700&family=Oleo+Script:wght@700&family=Quicksand:wght@300;500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="shared.css" />
<link rel="stylesheet" href="styles.css" />
<title>Travel Goals</title>
</head>
<body>
<header>
<div id="page-logo">
<a href="./">Travel Goals</a>
</div>
<nav>
<ul>
<li><a href="places.html">Destinations</a></li>
<li><a href="">About</a></li>
</ul>
</nav>
</header>
<main>
<section id="hero">
<div id="hero-content">
<h1>Sofiane's Travel Page</h1>
<p>Let's explore the world together!</p>
<a href="places.html">Discover places</a>
</div>
</section>
<section id="highlights">
<h2>Highlights</h2>
<ul id="destinations">
<li class="destination">
<img src="images/places/makkah.webp" alt="Kaabah in Makkah" />
<p>Makkah <strong>Saudi Arabia</strong></p>
</li>
<li class="destination">
<img src="images/places/dubai.webp" alt="Dubai in night" />
<p>Dubai <strong>United Arab Emirates</strong></p>
</li>
<li class="destination">
<img
src="images/places/kuala-lumpur.webp"
alt="Petronas Twin Towers in Kuala Lumpur"
/>
<p>Kuala Lumpur <strong>Malaysia</strong></p>
</li>
</ul>
</section>
</main>
<footer>
<ul>
<li>
<a href="https://www.facebook.com/Com4Muz" target="_blank">
<img src="images/icons/facebook.png" alt="Facebook logo"
/></a>
</li>
<li>
<a href="https://www.instagram.com/com4muz" target="_blank">
<img src="images/icons/insta.png" alt="Instagram logo"
/></a>
</li>
</ul>
</footer>
</body>
</html>