-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (119 loc) · 5.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./CSS/style.css" />
<link rel="shortcut icon" href="./IMG/favicon.ico" type="image/x-icon">
<script src="https://kit.fontawesome.com/809b27f811.js" crossorigin="anonymous"></script>
<title>TRAVEL WEBSITE | WELCOME</title>
</head>
<body>
<header class="header">
<nav class="navbar">
<div class="container">
<h1 class="logo lg-heading logo-color">MOR CG</h1>
<ul class="nav-items">
<li class="nav-item"><a href="./index.html">Home</a></li>
<li class="nav-item"><a href="./about.html">About</a></li>
<li class="nav-item"><a href="./contact.html">Contact</a></li>
</ul>
</div>
</nav>
<div class="header-content">
<h1 class="lg-heading text-light">
Discover Chhattisgarh: The Hidden Gem of Central India
</h1>
<p class="text-light">Experience Nature's Symphony in Chhattisgarh</p>
<a href="#explore-places" class="btn btn-primary text-red sm-heading">Explore</a>
</div>
</header>
<section class="showcase" id="explore-places">
<div class="container">
<div class="row row1">
<div class="img-box">
<img src="./IMG/Chitrakut.jpg" alt="Bastar Chitrakur Jalprapaat" />
</div>
<div class="text-box">
<h2 class="md-heading text-black">Tourist Places</h2>
<p class="box-para text-gray">
Chhattisgarh's tourist destinations, from the ancient ruins of Sirpur to the tribal villages of Bastar, offer diverse landscapes and vibrant cultural experiences for travelers to explore and enjoy.
</p>
<a href="./about.html" class="btn btn-secondary">More</a>
</div>
</div>
<div class="row row2 mb-0">
<div class="img-box">
<img src="./IMG/tample.jpg" alt="Mandir" />
</div>
<div class="text-box">
<h2 class="md-heading text-black">Spiritual heritage</h2>
<p class="box-para text-gray">
Chhattisgarh's spiritual heritage is rich and diverse, with sacred sites like the Bambleshwari Temple in Dongargarh and the ancient temples of Sirpur, echoing centuries of devotion and offering pilgrims a tranquil retreat amidst serene natural landscapes.
</p>
<a href="./about.html" class="btn btn-secondary">More</a>
</div>
</div>
<div class="row row1">
<div class="img-box">
<img src="./IMG/Culture.jpeg" alt="Culture" />
</div>
<div class="text-box">
<h2 class="md-heading text-black">Cultural heritage</h2>
<p class="box-para text-gray">
Chhattisgarh's cultural heritage is a vibrant blend of tribal traditions, showcased through colorful festivals, intricate handicrafts, and captivating folk music and dance forms, preserving centuries-old customs and stories.
</p>
<a href="./about.html" class="btn btn-secondary">More</a>
</div>
</div>
<div class="row row2" style="margin-bottom: 0%;">
<div class="img-box">
<img src="./IMG/Food.jpg" alt="Food" />
</div>
<div class="text-box">
<h2 class="md-heading text-black">Flavors of Chhattisgarh</h2>
<p class="box-para text-gray">
Discover the flavors of Chhattisgarh: Aamat's tang, Bafauri's bite, Bhajia's crunch, and more await, each dish a taste of regional tradition and culinary excellence.
</p>
<a href="./about.html" class="btn btn-secondary">More</a>
</div>
</div>
</div>
</section>
<section class="features">
<div class="container feature-container">
<div class="box-wrapper">
<div class="box box-1">
<i class="fa-solid fa-route fa-3x text-red"></i>
<h2 class="md-heading">Adventure</h2>
<p>
Thrilling adventures await in Chhattisgarh's rugged landscapes—trek through forests, conquer waterfalls, explore caves, and encounter diverse wildlife for an unforgettable adrenaline rush.
</p>
</div>
<div class="box box-2">
<i class="fa-solid fa-indian-rupee-sign fa-3x"></i>
<h2 class="md-heading">Less Price</h2>
<p>
Explore Chhattisgarh affordably—budget-friendly accommodations, local transport, dining, and free attractions ensure memorable experiences without breaking the bank.
</p>
</div>
<div class="box box-3">
<i class="fa-solid fa-user-check fa-3x text-red"></i>
<h2 class="md-heading">Experience</h2>
<p>
Immerse in Chhattisgarh's rich culture—vibrant festivals, tribal interactions, local cuisine, and ancient wonders promise enlightening experiences at every turn.
</p>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="social-media-links">
<i class="fa-brands fa-facebook fa-4x"></i>
<i class="fa-brands fa-twitter fa-4x"></i>
<i class="fa-brands fa-instagram fa-4x"></i>
</div>
<p>Mor CG © 2024, All Rights Reserverd</p>
</footer>
</body>
</html>