-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
132 lines (106 loc) · 4.8 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
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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Travel Website</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;800;900&family=Roboto+Slab:wght@100;300;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" />
<!-- Animate on scroll CDN -->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<!-- Local CSS File(s) -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav class="navbar">
<ul class="links-container">
<li class="link-item"><a href="#">Travels</a></li>
<li class="link-item"><a href="#explore-section">Explore</a></li>
<li class="link-item">
<a href="#hero-section">
<img src="img/logo.png" class="logo" alt="logo">
</a>
</li>
<li class="link-item"><a href="about.html">About us</a></li>
<li class="link-item"><a href="login.html">Login</a></li>
<li class="link-item"><a href="itinerary.html">Itinerary Planner</a></li>
<li class="link-item"><a href="testimonials.html">Testimonials</a></li>
</ul>
</nav>
<!-- Hero section -->
<main class="hero-section" id="hero-section">
<div class="background">
<img src="img/img1.jpg" class="background-image" alt="hero-section image">
<!-- grid -->
<div class="grid-slider">
<div class="grid-item hide"></div>
<div class="grid-item hide"></div>
<div class="grid-item hide"></div>
<div class="grid-item hide"></div>
<div class="grid-item hide"></div>
<div class="grid-item hide"></div>
</div>
</div>
<div class="hero-section-content">
<h1 class="hero-section-title">WanderWise</h1>
<p class="hero-section-sub-heading">Travel made personal</p>
</div>
<!-- Scroll down icon -->
<img src="img/down arrow.png" class="scroll-down-icon" alt="scroll down indicator">
</main>
</header>
<!-- Explore section -->
<section class="explore-section" id="explore-section">
<h1 class="section-title">Explore the Beauty of India</h1>
<p class="section-para">From the Himalayas to the beaches of Kanyakumari, India offers endless opportunities for adventure.</p>
<!-- Grid -->
<div class="tours-container">
<div class="tour-card">
<img src="img/jai.jpeg" class="tour-img" alt="tour-image">
<div class="tour-body">
<h3 class="tour-name">Jaipur</h3>
</div>
</div>
<div class="tour-card">
<img src="Img/gateway.jpg" class="tour-img" alt="tour-image">
<div class="tour-body">
<h3 class="tour-name">Mumbai</h3>
</div>
</div>
<div class="tour-card">
<img src="img/kerala.jpeg" class="tour-img" alt="tour-image">
<div class="tour-body">
<h3 class="tour-name">Kerala</h3>
</div>
</div>
<div class="tour-card">
<img src="img/ladakh.jpeg" class="tour-img" alt="tour-image">
<div class="tour-body">
<h3 class="tour-name">Ladakh</h3>
</div>
</div>
<div class="tour-card">
<img src="img/india.png" class="tour-img" alt="tour-image">
<div class="tour-body">
<h3 class="tour-name">Agra</h3>
</div>
</div>
<div class="tour-card">
<img src="img/hampi.jpg" class="tour-img" alt="tour-image">
<div class="tour-body">
<h3 class="tour-name">Hampi</h3>
</div>
</div>
</div>
</section>
<!-- Animate on scroll JS CDN -->
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<!-- Local JS File(s) -->
<script src="app.js"></script>
</body>
</html>