-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (64 loc) · 2.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Explore the rich culture and heritage of India.">
<title>Incredible India: Culture & Heritage</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<div class="logo">
<h1>Incredible India</h1>
</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#states">States</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="home" class="hero">
<div class="hero-content">
<h2>Welcome to India's Culture & Heritage</h2>
<p>Explore the rich diversity of Indian culture, from traditional arts to modern celebrations, across all states.</p>
<a href="#states" class="explore-btn">Explore States</a>
</div>
</section>
<section id="states" class="states-container">
<h2>Explore Indian States</h2>
<div class="states-grid">
<!-- Example State Cards -->
<div class="state-card">
<img src="Rajasthan.jpg" alt="Rajasthan">
<h3>Rajasthan</h3>
<button class="show-details">Show Details</button>
</div>
<div class="state-card">
<img src="Kerela.jpg" alt="Kerala">
<h3>Kerala</h3>
<button class="show-details">Show Details</button>
</div>
<!-- More states can be added here -->
</div>
</section>
<section id="contact">
<h2>Contact Us</h2>
<form>
<label for="name">Name</label>
<input type="text" id="name" required>
<label for="email">Email</label>
<input type="email" id="email" required>
<label for="message">Message</label>
<textarea id="message" rows="4" required></textarea>
<button type="submit">Submit</button>
</form>
</section>
<footer>
<p>© 2024 Incredible India. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>