-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchhattisgarhEx.html
More file actions
202 lines (175 loc) · 4.8 KB
/
chhattisgarhEx.html
File metadata and controls
202 lines (175 loc) · 4.8 KB
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Chhattisgarh - Culture & Folklore</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: #fffaf0;
color: #333;
animation: fadeIn 1.2s ease-in;
}
/* Fade Animation */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
/* Hero Section */
header {
background: linear-gradient(to right, #388e3c, #cddc39); /* green to yellow */
color: white;
text-align: center;
padding: 50px 15px;
}
header h1 {
margin: 0;
font-size: 30px;
}
header p {
margin-top: 10px;
font-size: 16px;
}
.scroll-text {
margin-top: 15px;
font-size: 14px;
font-weight: bold;
animation: bounce 1.5s infinite;
}
/* Bounce animation */
@keyframes bounce {
0% { transform: translateY(0); }
50% { transform: translateY(6px); }
100% { transform: translateY(0); }
}
/* Content Section */
section {
padding: 30px 20px;
}
/* Card Design */
.card {
background: #f1f8e9; /* light greenish tone */
margin: 30px auto;
max-width: 850px;
border-radius: 12px;
box-shadow: 0 6px 15px rgba(0,0,0,0.2);
overflow: hidden;
transition: 0.4s ease;
}
.card:hover {
transform: scale(1.03);
}
.card img {
width: 100%;
height: 300px;
object-fit: cover;
}
.card-content {
padding: 22px;
}
.card-content h2 {
margin-top: 0;
color: #388e3c; /* deep green */
}
/* Back Button */
button {
margin: 50px auto;
display: block;
padding: 12px 25px;
background: #689f38; /* earthy green */
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
font-weight: bold;
font-size: 15px;
transition: 0.3s;
}
button:hover {
background: #33691e; /* darker green */
}
</style>
</head>
<body>
<header>
<h1>🌟 Chhattisgarh 🌟</h1>
<p>Land of Tribes, Folk Arts & Festivals</p>
<div class="scroll-text">⬇ Scroll Down to Explore ⬇</div>
</header>
<section>
<!-- Traditional Dances -->
<div class="card">
<img src="rautnacha.jpg" alt="Traditional Dances">
<div class="card-content">
<h2>Folk Dances</h2>
<p>
Chhattisgarh is known for vibrant tribal dances such as Panthi, Raut Nacha, and Karma.
These dances are performed during festivals, harvests, and religious celebrations, accompanied by folk songs and drums.
</p>
<p>
The performances tell stories from local legends and tribal folklore.
</p>
</div>
</div>
<!-- Festivals -->
<div class="card">
<img src="bastradushera.jpg" alt="Festivals">
<div class="card-content">
<h2>Festivals</h2>
<p>
Major festivals include Bastar Dussehra, Hareli, and Madai.
Bastar Dussehra is a 75-day long celebration showcasing tribal rituals, music, and traditional ceremonies.
</p>
<p>
Festivals reflect Chhattisgarh’s tribal heritage, folklore, and communal traditions.
</p>
</div>
</div>
<!-- Handicrafts & Arts -->
<div class="card">
<img src="bellmetal.jpg" alt="Handicrafts">
<div class="card-content">
<h2>Handicrafts & Art</h2>
<p>
The state is famous for tribal handicrafts, bell metal Dhokra art, terracotta figurines, and Dokra metal crafts.
Artisans preserve tribal legends and cultural stories through their craftwork.
</p>
<p>
Folk tales and local myths are depicted in paintings, masks, and ornaments.
</p>
</div>
</div>
<!-- Temples & Heritage -->
<div class="card">
<img src="rajimtemple.jpg" alt="Temples & Heritage">
<div class="card-content">
<h2>Temples & Heritage</h2>
<p>
Chhattisgarh has historical temples like Rajim Kumbh temples and Bhoramdeo Temple.
Temples host folk performances and festivals preserving tribal rituals and traditions.
</p>
<p>
These heritage sites connect locals and visitors with the cultural and spiritual folklore of the state.
</p>
</div>
</div>
<!-- Culture Summary -->
<div class="card">
<div class="card-content">
<h2>Culture & Folklore Summary</h2>
<p>
Chhattisgarh’s culture is deeply rooted in tribal traditions, folk dances, handicrafts, and festivals.
Folklore, legends, and tribal rituals are preserved through dance, art, and music, making it a rich cultural hub of central India.
</p>
</div>
</div>
</section>
<button onclick="goBack()">⬅ Back to Popup</button>
<script>
function goBack() {
window.location.href = "../index.html"; // Updated to index.html
}
</script>
</body>
</html>