<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Republic Day of India - Honoring the Constitution</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
color: #333;
}
header {
background-color: #ff9933;
color: white;
padding: 20px;
text-align: center;
}
header h1 {
margin: 0;
}
header p {
margin: 5px 0 0;
}
.content {
padding: 20px;
}
.content h2 {
color: #006400;
}
.content p {
line-height: 1.6;
}
.dynamic-message {
margin-top: 20px;
padding: 15px;
background-color: #dff0d8;
border: 1px solid #c3e6cb;
border-radius: 5px;
color: #155724;
}
footer {
background-color: #138808;
color: white;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Republic Day of India</h1>
<p>Honoring the Constitution and Celebrating Democracy</p>
</header>
<div class="content">
<h2>History of Republic Day</h2>
<p>Republic Day is celebrated every year on January 26th to commemorate the adoption of the Constitution of India in 1950. This historic day marked the transition of India from a British Dominion to a fully sovereign Republic. The date was chosen to honor the declaration of Purna Swaraj (complete independence) made in 1930.</p>
<p>The Constitution, drafted by the Constituent Assembly and chaired by Dr. B.R. Ambedkar, took nearly three years to complete. It embodies the principles of justice, equality, liberty, and fraternity. Republic Day is celebrated with grandeur across the country, with the grandest celebrations taking place in New Delhi, featuring a parade that showcases India's cultural diversity and military prowess.</p>
<div id="dynamicMessage" class="dynamic-message">
<!-- Dynamic message will be injected here -->
</div>
</div>
<footer>
© 2025 | Proudly celebrating Republic Day
</footer>
<script>
// JavaScript to display a dynamic message
const today = new Date();
const day = today.getDate();
const month = today.getMonth() + 1;
const year = today.getFullYear();
let message;
if (day === 26 && month === 1) {
message = `Today is Republic Day! Let's honor our Constitution and remember our freedom fighters.`;
} else {
message = `Republic Day is celebrated every year on 26th January. Let's always cherish our nation's rich heritage.`;
}
document.getElementById('dynamicMessage').innerText = message;
</script>
</body>
</html>
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)