-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjharkhandEx.html
More file actions
168 lines (142 loc) · 3.66 KB
/
jharkhandEx.html
File metadata and controls
168 lines (142 loc) · 3.66 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Jharkhand - Culture & Folklore</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: #fff8f0; /* warm background */
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, #8e24aa, #ba68c8); /* purple gradient for rich culture */
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: #f3e5f5; /* light purple */
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: 200px;
object-fit: cover;
border-radius: 8px;
}
.card-content {
padding: 22px;
}
.card-content h2 {
margin-top: 0;
color: #8e24aa; /* deep purple heading */
}
/* Back Button */
button {
margin: 50px auto;
display: block;
padding: 12px 25px;
background: #ab47bc; /* purple button */
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
font-weight: bold;
font-size: 15px;
transition: 0.3s;
}
button:hover {
background: #6a1b9a; /* darker purple */
}
</style>
</head>
<body>
<header>
<h1>🌳 Jharkhand 🌳</h1>
<p>Land of Forests, Tribes & Rich Folklore</p>
<div class="scroll-text">⬇ Scroll Down to Explore ⬇</div>
</header>
<section>
<!-- Hundru Falls -->
<div class="card">
<img src="hundru.jpg" alt="Hundru Falls">
<div class="card-content">
<h2>Hundru Falls</h2>
<p>One of the highest waterfalls in India, formed by the Subarnarekha River. A natural wonder surrounded by lush forests.</p>
</div>
</div>
<!-- Betla National Park -->
<div class="card">
<img src="betla.jpg" alt="Betla National Park">
<div class="card-content">
<h2>Betla National Park</h2>
<p>A beautiful wildlife reserve with hills, forests, and ancient forts. It showcases Jharkhand's biodiversity and tribal heritage.</p>
</div>
</div>
<!-- Tribal Culture & Festivals -->
<div class="card">
<img src="tribal.jpg" alt="Jharkhand Tribal Culture">
<div class="card-content">
<h2>Tribal Culture & Festivals</h2>
<p>Jharkhand is home to rich tribal traditions like Sarhul, Karma, and Sohrai festivals. Folk music, dances, and rituals preserve tribal folklore.</p>
</div>
</div>
<!-- Chhau Dance -->
<div class="card">
<img src="chhau.jpg" alt="Chhau Dance">
<div class="card-content">
<h2>Chhau Dance</h2>
<p>A UNESCO-recognized martial dance form combining grace, energy, and storytelling. It is performed during festivals and cultural events.</p>
</div>
</div>
<button onclick="goBack()">⬅ Back to Popup</button>
<script>
function goBack() {
window.location.href = "../index.html"; // Updated to index.html
}
</script>
</section>
</body>
</html>