-
Notifications
You must be signed in to change notification settings - Fork 0
/
tributepage.html
41 lines (40 loc) · 2.04 KB
/
tributepage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tribute Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body >
<div id="main">
<h1 id="title">Nelson Mandela</h1>
<div id="img-div">
<img id="image" src="./Images/nelson mandela.jpg" alt="Nelson Mandela">
<p id="img-caption">Mandela as the President of South Africa in 1994</p>
</div>
<hr>
<div id="tribute-info">
<p id= "timeline">
Here is a time line of <b> Nelson Rolihlahla Mandela</b>
</p>
<ul>
<li> <b> 1918:</b> Born Rolihlahla Mandela at Mvezo in the Transkei</li>
<li> <b> 1925:</b> Attends primary school near Qunu (receives the name ‘Nelson’ from a teacher)</li>
<li> <b> 1930:</b> Father dies. Entrusted to Thembu Regent Jongintaba Dalindyebo at the age of 12</li>
<li> <b> 1934:</b> Undergoes initiation; Attends Clarkebury Boarding Institute in Engcobo</li>
<li> <b> 1941:</b> Escapes an arranged marriage; becomes a mine security officer; starts articles at the law firm Witkin, Sidelsky & Eidelman</li>
<li> <b> 1942:</b> Completes BA through the University of South Africa (UNISA)</li>
<li> <b> 1994:</b> Elected by Parliament as first president of a democratic South Africa</li>
<li> <b> 1995:</b> Divorces Winnie Mandela</li>
<li> <b> 2001:</b> Diagnosed with prostate cancer</li>
<li> <b> 2013:</b> Passed away at home in Johannesburg</li>
</ul>
<br>
<br>
<p id="quote"> <i> "I will not leave South Africa, nor will I surrender. Only through hardship, sacrifice and militant action can freedom be won. The struggle is my life. I will continue fighting for freedom until the end of my days." <br>- Nelson Mandela </i></p>
<p id="#wikipage">If you have time, you should read more about this incredible human being on his <a id="tribute-link" href="https://en.wikipedia.org/wiki/Nelson_Mandela" target="_blank">Wikipedia entry.</a> </p>
</div>
</body>
</html>