-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (80 loc) · 2.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Travel Goals</title>
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@700&family=Oleo+Script:wght@700&family=Quicksand:wght@300;500;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,100;1,400&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="shared.css" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<div id="page-logo">
<a href="index.html">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>Travel Page</h1>
<p>Christ Ghosh</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/balouu-balaa-cover.jpg"
alt="Balou Balaa a gem of Chatin, Lebanon"
/>
<p>Balou Balaa <strong>Lebanon</strong></p>
</li>
<li class="destination">
<img
src="/images/places/batrounsouks.webp"
alt="Souks of Batroun lebanon"
/>
<p>Batroun Souks <strong>Lebanon</strong></p>
</li>
<li class="destination">
<img src="/images/places/jbeil al3a.jpg" alt="Jbeil Roman Ruins" />
<p>Jbeil Roman Ruins <strong>Lebanon</strong></p>
</li>
</ul>
</section>
</main>
<footer>
<ul>
<li>
<a href="https://www.instagram.com">
<img src="/images/places/icons/insta.png" alt="Instagram logo" />
</a>
</li>
<li>
<a href="https://www.facebook.com">
<img src="/images/places/icons/facebook.png" alt="Facebook logo" />
</a>
</li>
</ul>
</footer>
</body>
</html>