-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (48 loc) · 2.57 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Tribute Page</title>
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width initial-scale=1.0">
</head>
<body>
<main id="main">
<h1 id="title">Dr. A P J Abdul Kalam</h1>
<div id="img-div">
<img id="image" src="./Dr_Abdul_Kalam.jpg">
<figcaption id="img-caption">Dr. A P J Abdul Kalam, Indian aerospace scientist and the 11th President of India</figcaption>
</div>
<section id="tribute-info">
<ul class="list">
<li><b>1931 : </b> Born in Rameshwaram, Tamil Nadu</li>
<li><b>1954 : </b> Graduated from St. Joseph college, Tiruchirapalli</li>
<li><b>1955 : </b> Enrolled at the MIT to study aerospace engineering</li>
<li><b>1960 : </b> Joined DRDO as chief secratary</li>
<li><b>1965 : </b> Started work roket project independently at DRDO</li>
<li><b>1969 : </b> Transferred to the ISRO</li>
<li><b>1980-90 : </b> Responsible for the development of AGNI and PRITHVI missiles in ISRO</li>
<li><b>1981 : </b> Received Padma Bhushan from the Government of India</li>
<li><b>1990 : </b>Received Padma Vibhushan from the Government of India</li>
<li><b>1992-99 : </b> Served as the Chief Scientific Adviser to the PM and the Secratary of DRDO</li>
<li><b>1997 : </b> Received Bharat Ratna from the Government of India</li>
<li><b>2002-07 : </b> Served as the 11th President of India</li>
<li><b>2015 : </b> Passed away due to cardiac arrest</li>
</ul>
<blockquote>A scientist and statesman, Dr Kalam rose from humble beginnings to become one of India's most
accomplished leaders, earning esteem at home and abroad. <span> -- United States President Barack
Obama</span></blockquote>
<h5>To know more about him, refer <a target="_blank" id="tribute-link"
href="https://en.wikipedia.org/wiki/A._P._J._Abdul_Kalam">Wikipedia</a>
</h5>
</section>
<section class="credits">
This project is done by M. Satya Sai Teja as a part of "FreeCodeCamp Responsive Web Design" Course
</section>
<div id="logo-box">
<img class="logo" src="./logo.png" alt="logo">
</div>
</main>
</body>
</html>