Tribute Page using HTML & CSS

Introduction

A tribute page is a simple web page for remembering and remembering an individual. It often holds information about the individual, including their accomplishments and perhaps some images.


Source Code:

HTML:

<!DOCTYPE html>
<html>
<head>
   <title>Tribute Page</title>
</head>
<body>
  <h1>A. P. J. Abdul Kalam</h1>

  <hr color="black" size="5" width="50%">

  <div id="img">
    <img src="A. P. J. Abdul Kalam.png" alt="A. P. J. Abdul Kalam image"> 
  </div>
  <div class="about">
   <h2>About A. P. J. Abdul Kalam</h2>
   <p id="description"> A.P.J. Abdul Kalam, born Avul Pakir Jainulabdeen Abdul Kalam, was born on October 15, 1931, in Rameswaram, Tamil Nadu, India. Dr. APJ Abdul Kalam was India's eleventh President, from 2002 to 2007. He then spent the following forty years as a scientist and science administrator, primarily in the Defence Research and Development Organisation (DRDO) and Indian Space Research Organisation (ISRO), and was closely associated with India's civilian space programme and military missile development programme. He therefore earned the nickname of the Missile Man of India due to his efforts in the development of ballistic missiles.<br>
<br>
Kalam was re-elected as the 11th President of India in 2002 by both the ruling Bharatiya Janata Party and then-opposition Indian National Congress. He is best known as the "People's President" and went back to his civilian life of education, writing and public service after a single term. He was awarded numerous prestigious awards, including the Bharat Ratna, the highest civilian honour in India. Kalam won the election handily and was inaugurated as India's 11th president, a largely symbolic office, in July 2002. He retired at the end of his term in 2007 and was replaced by Pratibha Patil, India's first female president.<br>
<br>
When he came back to life in the civilian world, Kalam continued to work toward applying science and technology to develop India into a developed nation and served as a lecturer at various universities. On July 27, 2015, he fainted during a lecture at the Indian Institute of Management Shillong and was declared dead due to cardiac arrest shortly after.<br>
<br>
Kalam authored a number of books, one of them being an autobiography, Wings of Fire (1999). Among his many awards were two of the nation's highest honors, the Padma Vibhushan (1990) and the Bharat Ratna (1997). </p>
  </div>
</body>
</html>

CSS:

body {
    box-sizing : border-box;
}

h1 {
    text-align : center;
    font-size : 7vh;
}

img {
    display : inline-block;
    width : 100%;
}

caption {
    font-size : 20px;
    font-family : 'Courier New', Courier, monospace;
    text-align : center;
    color : black;
}

.about {
    background-color : rgb(199, 199, 199);
}

.about h2 {
    text-align : center;
    padding : 2vw;
}

#description {
    text-align : center;
}

Output