-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeralaEx.html
More file actions
198 lines (172 loc) · 4.55 KB
/
keralaEx.html
File metadata and controls
198 lines (172 loc) · 4.55 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Kerala - Cultural Details</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: #f3fff6;
color: #333;
animation: fadeIn 1.2s ease-in;
}
/* Fade Animation */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
/* Header Section */
header {
background: linear-gradient(to right, #2e7d32, #66bb6a);
color: white;
text-align: center;
padding: 50px 15px;
}
header h1 {
margin: 0;
font-size: 28px;
}
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); }
}
section {
padding: 30px 20px;
}
/* Card Styling */
.card {
background: white;
margin: 30px auto;
max-width: 850px;
border-radius: 12px;
box-shadow: 0 6px 15px rgba(0,0,0,0.15);
overflow: hidden;
transition: 0.4s ease;
}
.card:hover {
transform: scale(1.03);
}
.card img {
width: 100%;
height:350px;
object-fit: cover;
}
.card-content {
padding: 22px;
}
.card-content h2 {
margin-top: 0;
color: #2e7d32;
}
/* Back Button */
button {
margin: 50px auto;
display: block;
padding: 12px 25px;
background: #2e7d32;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
font-weight: bold;
font-size: 15px;
transition: 0.3s;
}
button:hover {
background: #1b5e20;
}
</style>
</head>
<body>
<header>
<h1>🌴 Kerala 🌴</h1>
<p>God’s Own Country</p>
<div class="scroll-text">⬇ Scroll Down to Explore ⬇</div>
</header>
<section>
<div class="card">
<img src="kathakali.jpg" alt="Kathakali Dance">
<div class="card-content">
<h2>Kathakali</h2>
<p>
Kathakali is a famous classical dance-drama of Kerala,
known for its elaborate costumes, colorful makeup, and expressive gestures.
It tells stories from Indian epics like the Ramayana and Mahabharata.
</p>
<p>
Performers undergo years of training to master facial expressions and hand movements.
The dramatic storytelling and traditional music make Kathakali
one of the most unique art forms in India.
</p>
</div>
</div>
<div class="card">
<img src="kb.jpg" alt="Kerala Backwaters">
<div class="card-content">
<h2>Kerala Backwaters</h2>
<p>
The backwaters of Kerala are a network of lagoons, canals, and lakes
that run parallel to the Arabian Sea coast.
Houseboat cruises are a major attraction for visitors.
</p>
<p>
Surrounded by coconut trees and peaceful villages,
the backwaters reflect Kerala’s natural beauty
and play an important role in local transportation and tourism.
</p>
</div>
</div>
<div class="card">
<img src="onam.jpg" alt="Onam Festival">
<div class="card-content">
<h2>Onam Festival</h2>
<p>
Onam is the most important festival of Kerala,
celebrated with traditional dances, boat races, and grand feasts.
It marks the homecoming of the legendary King Mahabali.
</p>
<p>
People decorate their homes with colorful flower rangolis called Pookalam,
wear traditional attire, and enjoy the Onam Sadhya,
a delicious multi-course vegetarian meal served on banana leaves.
</p>
</div>
</div>
<div class="card">
<img src="kalaripyattu.jpg" alt="Kalaripayattu Martial Art">
<div class="card-content">
<h2>Kalaripayattu</h2>
<p>
Kalaripayattu is one of the oldest martial arts in the world,
originating in Kerala thousands of years ago.
It combines physical training, weapon practice, and meditation.
</p>
<p>
The art form focuses on discipline, flexibility, and strength,
and it has influenced many modern martial arts styles.
It remains an important part of Kerala’s traditional heritage.
</p>
</div>
</div>
</section>
<button onclick="goBack()">⬅ Back to Popup</button>
<script>
function goBack() {
window.location.href = "../index.html";
}
</script>
</body>
</html>