-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A Tribute Page is a dedicated page celebrating the life and memory of your loved one. It is a permanent memorial where, you, family and friends can remember your loved one and share many memories and photos to celebrate their life.
- Loading branch information
1 parent
628b2c5
commit 8bed0ad
Showing
4 changed files
with
120 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Tribute to Mahatma Gandhi</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
|
||
<body> | ||
<header> | ||
<h1>Tribute to Mahatma Gandhi</h1> | ||
</header> | ||
<main> | ||
<section id="introduction"> | ||
<h2>Introduction</h2> | ||
<p>Mahatma Gandhi, also known as Bapu, was a prominent leader in India's struggle for independence against British rule. He is remembered for his non-violent civil disobedience and his principles of truth and non-violence (Satyagraha).</p> | ||
</section> | ||
|
||
<section id="achievements"> | ||
<h2>Achievements</h2> | ||
<p>Gandhi's accomplishments are numerous and have left a lasting impact on the world:</p> | ||
<ul> | ||
<li>Leading the successful Salt March, a significant civil disobedience campaign against British salt taxes</li> | ||
<li>Advocating for the rights of the untouchables (Dalits) and fighting against caste discrimination</li> | ||
<li>Promoting Swadeshi movement to encourage the use of locally-made products and boycott of British goods</li> | ||
<li>Championing the cause of Indian farmers and laborers</li> | ||
</ul> | ||
</section> | ||
|
||
<section id="inspiration"> | ||
<h2>Inspiration</h2> | ||
<p>Mahatma Gandhi's teachings and philosophy of peace, harmony, and non-violence continue to inspire millions of people worldwide. His dedication to truth, simplicity, and self-reliance has left a profound impact on the hearts of many.</p> | ||
</section> | ||
|
||
<section id="images"> | ||
<h2>Gallery</h2> | ||
<div class="image-container"> | ||
<img src="Spinning.jpg" alt="Mahatma Gandhi at the spinning wheel"> | ||
<p><b><u>Mahatma Gandhi at the spinning wheel</u></b></p> | ||
</div> | ||
<div class="image-container"> | ||
<img src="gandhi_2.jpg" alt="Mahatma Gandhi leading a peaceful protest"> | ||
<p><b><u>Mahatma Gandhi leading a peaceful protest</u></b></p> | ||
</div> | ||
</section> | ||
</main> | ||
<footer> | ||
<p>©2023 Created with ❤️ by Abhishek Srivastava</p> | ||
</footer> | ||
<script src="script.js"></script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
body { | ||
font-family: Arial, sans-serif; | ||
line-height: 1.6; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f7f7f7; | ||
} | ||
|
||
header { | ||
text-align: center; | ||
background-color: #006400; | ||
color: #fff; | ||
padding: 1rem 0; | ||
} | ||
|
||
header h1 { | ||
font-size: 2.5rem; | ||
margin: 0; | ||
} | ||
|
||
main { | ||
max-width: 800px; | ||
margin: 0 auto; | ||
padding: 1rem; | ||
} | ||
|
||
section { | ||
margin-bottom: 2rem; | ||
} | ||
|
||
section h2 { | ||
border-bottom: 2px solid #006400; | ||
padding-bottom: 0.5rem; | ||
} | ||
|
||
ul { | ||
list-style: disc; | ||
margin-left: 2rem; | ||
} | ||
|
||
.image-container { | ||
margin-bottom: 1rem; | ||
text-align: center; | ||
} | ||
|
||
.image-container { | ||
margin-bottom: 1rem; | ||
text-align: center; | ||
} | ||
|
||
.image-container img { | ||
max-width: 50%; | ||
border-radius: 50px; | ||
} | ||
|
||
footer { | ||
text-align: center; | ||
background-color: #006400; | ||
color: #fff; | ||
padding: 1rem 0; | ||
} | ||
|
||
footer p { | ||
margin: 0; | ||
} |