<!
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Indian Cultures</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
background-color: #f8f9fa;
}
header {
background-color: #ff7043;
color: white;
padding: 1rem 0;
text-align: center;
}
nav {
background-color: #333;
text-align: center;
}
nav a {
color: white;
text-decoration: none;
padding: 1rem;
display: inline-block;
}
nav a:hover {
background-color: #575757;
}
section {
padding: 2rem;
margin: 0 auto;
max-width: 800px;
}
h2 {
color: #ff7043;
margin-bottom: 1rem;
}
img {
max-width: 100%;
height: auto;
margin: 1rem 0;
}
footer {
text-align: center;
background-color: #ff7043;
color: white;
padding: 1rem 0;
margin-top: 2rem;
}
</style>
</head>
<body>
<header>
<h1>Indian Cultures</h1>
<p>Discover the diverse cultural heritage of India.</p>
</header>
<nav>
<a href="#dance">Dance</a>
<a href="#food">Food</a>
<a href="#festivals">Festivals</a>
<a href="#clothing">Clothing</a>
</nav>
<section id="dance">
<h2>Dance</h2>
<p>India is known for its classical dance forms such as Bharatanatyam,
Kathak, Odissi, and Kathakali, as well as vibrant folk dances like Bhangra, Garba,
and Ghoomar.</p>
<img
src="https://upload.wikimedia.org/wikipedia/commons/4/40/Bharatanatyam_Performance_
DS.jpg" alt="Indian Classical Dance">
</section>
<section id="food">
<h2>Food</h2>
<p>Indian cuisine is a blend of spices and flavors, featuring dishes like
biryani, dosa, butter chicken, and traditional sweets like gulab jamun and
rasgulla.</p>
<img
src="https://upload.wikimedia.org/wikipedia/commons/7/74/Indian_foods.jpg"
alt="Indian Food">
</section>
<section id="festivals">
<h2>Festivals</h2>
<p>India celebrates vibrant festivals like Diwali, Holi, Eid, Christmas,
and Pongal, reflecting the nation's cultural diversity and unity.</p>
<img
src="https://upload.wikimedia.org/wikipedia/commons/3/3a/Holi_Celebrations.jpg"
alt="Holi Festival">
</section>
<section id="clothing">
<h2>Clothing</h2>
<p>Traditional Indian clothing includes sarees, lehengas, and salwar kameez
for women, and kurta-pajamas and sherwanis for men, often adorned with intricate
designs.</p>
<img
src="https://upload.wikimedia.org/wikipedia/commons/a/a8/Indian_attire.jpg"
alt="Indian Clothing">
</section>
<footer>
<p>© 2024 Indian Cultures. All Rights Reserved.</p>
</footer>
</body>
</html>