-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgujaratEx.html
More file actions
168 lines (142 loc) · 3.54 KB
/
gujaratEx.html
File metadata and controls
168 lines (142 loc) · 3.54 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>Gujarat - 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, #ff5722, #ff8a65); /* warm orange gradient */
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: #fff3e0; /* light warm 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: 200px;
object-fit: cover;
border-radius: 8px;
}
.card-content {
padding: 22px;
}
.card-content h2 {
margin-top: 0;
color: #ff5722; /* deep orange heading */
}
/* Back Button */
button {
margin: 50px auto;
display: block;
padding: 12px 25px;
background: #ff7043; /* warm orange button */
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
font-weight: bold;
font-size: 15px;
transition: 0.3s;
}
button:hover {
background: #e64a19; /* darker orange */
}
</style>
</head>
<body>
<header>
<h1>🦁 Gujarat 🦁</h1>
<p>Land of Legends, Lions & Vibrant Culture</p>
<div class="scroll-text">⬇ Scroll Down to Explore ⬇</div>
</header>
<section>
<!-- Gir National Park -->
<div class="card">
<img src="gir.png" alt="Gir National Park">
<div class="card-content">
<h2>Gir National Park</h2>
<p>The only natural habitat of Asiatic lions. Gir showcases Gujarat's wildlife and forest heritage.</p>
</div>
</div>
<!-- Somnath Temple -->
<div class="card">
<img src="somnath.jpg" alt="Somnath Temple">
<div class="card-content">
<h2>Somnath Temple</h2>
<p>One of the 12 Jyotirlingas, Somnath is a symbol of faith, resilience, and history, attracting thousands of pilgrims.</p>
</div>
</div>
<!-- Garba & Navratri -->
<div class="card">
<img src="garba.jpg" alt="Garba Dance">
<div class="card-content">
<h2>Garba & Navratri</h2>
<p>Gujarat comes alive during Navratri with Garba and Dandiya dance festivals celebrated across cities and villages.</p>
</div>
</div>
<!-- Rann of Kutch -->
<div class="card">
<img src="kutch.jpg" alt="Rann of Kutch">
<div class="card-content">
<h2>Rann of Kutch</h2>
<p>A vast white salt desert famous for the Rann Utsav and traditional handicrafts, reflecting Gujarat’s rich heritage.</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>