-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (59 loc) · 2.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Credit - youtube.com/@ashutoshpython -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<title>Ashutosh Python | Travel Moments</title>
</head>
<body>
<nav>
<ul class="nav__links">
<li class="link"><a href="#">HOME</a></li>
<li class="link"><a href="#">ABOUT US</a></li>
<li class="link"><a href="#">E-TICKET</a></li>
<li class="link"><a href="#">JOURNEY</a></li>
<li class="link"><a href="#">CONTACT</a></li>
</ul>
</nav>
<div class="container">
<div class="container__left">
<div class="left__content">
<h4>Best guide for you</h4>
<p>
Our team of experts has scoured collection of handpicked
destinations and insider tips to ensure your journey is
extraordinary.
</p>
</div>
</div>
<div class="container__right">
<img src="women.png" alt="women" />
<div class="right__content">
<h1>ENJOY</h1>
<h4>Travelling moment</h4>
<p>
Welcome to our travel website, where we pride ourselves on being the
best guide for you in your wanderlust adventures. Whether you're
seeking sun-soaked beaches, or thrilling outdoor escapades, we've
got you covered.
</p>
<div class="action__btns">
<button class="btn primary__btn">Explore</button>
<button class="btn secondary__btn">See More</button>
</div>
<div class="socials">
<span><i class="ri-instagram-line"></i></span>
<span><i class="ri-twitter-fill"></i></span>
<span><i class="ri-facebook-fill"></i></span>
</div>
</div>
</div>
</div>
</body>
</html>