-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (71 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Nepal | Tour</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="landing.css" />
<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"
/>
</head>
<body>
<header>
<div class="logo">
<a href="index.html">Nepal</a>
</div>
<nav>
<ul>
<li><a href="place.html">Destination</a></li>
<li><a href="index.html">About</a></li>
</ul>
</nav>
</header>
<main>
<section id="background">
<div id="background-content">
<h1>Nepal Tourism</h1>
<p>Let's explore the Nepal together!</p>
<a href="place.html">Select Place</a>
</div>
</section>
<section id="highlights">
<h2>Highlight</h2>
<ul class="destinations">
<li id="destination">
<img src="images/lumbini.jpg" alt="Mayadevi Temple">
<p>MayaDeviTemple <strong>Lumbini</strong> </p>
</li>
<li id="destination">
<img src="images/kathmandu.jpg" alt="Temple of Kathmandu">
<p>Basantapur <strong>Kathmandu</strong> </p>
</li>
<li id="destination">
<img src="images/citwan.jpg" alt="National park of citwan">
<p>Chitwan National Park <strong>Citwan</strong> </p>
</li>
</ul>
</section>
<footer>
<ul>
<li>
<a href="https://twitter.com/home/">
<img src="images/twitter-brands.svg" alt="logo of twitter">
</a>
</li>
<li>
<a href="https://www.facebook.com/">
<img src="images/facebook-brands (1).svg" alt="logo of facebook">
</a>
</li>
<li>
<a href="https://www.instagram.com">
<img src="images/instagram-brands.svg" alt="logo of instagram">
</a>
</li>
</ul>
</footer>
</main>
</body>
</html>