-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTribute html.html
77 lines (75 loc) · 3.34 KB
/
Tribute html.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
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html style="background-color: antiquewhite;">
<head>
<title>Mahatma Gandhi</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
}
h1 {
background-color: brown;
color: white;
padding: 10px;
border-radius: 10px;
}
img {
width: 200px;
height: 200px;
border-radius: 50%;
margin: 20px;
}
.container {
max-width: 800px;
margin: 40px auto;
padding: 20px;
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
ul {
list-style: none;
padding: 0;
}
li {
margin-bottom: 10px;
}
</style>
</head>
<body>
<h1 style="text-align: center; background-color: brown;"><b>Mahatma Gandhi</b></h1>
<div class="container">
<div class="section">
<img src="Mah G.jpeg" alt="Mahatma Gandhi">
<h2>Biography</h2>
<p>Name: Mohandas Karamchand Gandhi.</p>
<p>Birth: Born on October 2, 1869, in Porbandar, Gujarat, India.</p>
<p>Title: Revered as "Mahatma" (meaning "Great Soul").</p>
<p>Philosophy: Promoted Ahimsa (non-violence) and Satyagraha (truth-force) as methods of peaceful resistance.</p>
<p>Education: Studied law in London and became a barrister in 1891.</p>
<p>South Africa: Fought against racial discrimination while in South Africa from 1893 to 1915.</p>
<p>Role in Indian Independence: Leader of the Indian independence movement against British rule, advocating nonviolent civil disobedience.</p>
</div>
<div class="section">
<h2>Major Movements</h2>
<ul>
<li>Satyagraha (1917): First major success in India's independence movement.</li>
<li>Non-Cooperation Movement (1920): Boycott of British goods and institutions.</li>
<li>Salt March (1930): Protested British salt tax with a 240-mile march.</li>
<li>Quit India Movement (1942): Demanded an end to British rule.</li>
<li>Imprisonments: Imprisoned several times by the British government for his activism.</li>
</ul>
</div>
<div class="section">
<h2>Beliefs and Legacy</h2>
<p>Belief in Simple Living: Advocated for self-reliance, handmade goods, and rural development.</p>
<p>Attire: Adopted the traditional Indian dhoti made of khadi, symbolizing simplicity and rejection of British goods.</p>
<p>Religious Pluralism: Believed in equality for all religions, working towards Hindu-Muslim unity.</p>
<p>Influence on Global Leaders: Inspired civil rights leaders like Martin Luther King Jr. and Nelson Mandela.</p>
<p>Assassination: Gandhi was assassinated on January 30, 1948, by Nathuram Godse.</p>
<p>Legacy: Regarded as the "Father of the Nation" in India, remembered for his contributions to nonviolent resistance and social reform.</p>
</div>
</div>
</body>
</html>