Design a Tribute Page using HTML and CSS Last Updated : 19 Apr, 2025 Comments Improve Suggest changes Like Article Like Report Making a tribute page is an Innovative way to honor someone special in your life. In this article, we create a tribute webpage using HTML and CSS. This page has a simple and creative design. It contains a header with a title, a main section with text and images, and a footer for main details or credits.Setting Up the Project for Your WebpageTo start a project, create a folder and add files to it.index.html: The main file that contains the structure of the webpage.style.css: The file where you will add all the styling to make the page more appealing.Project Preview:Preview of proejectBuilding the HTML Structure for your WebpageThe HTML structure forms the backbone of your tribute webpage. It will Include elements like headings , images, text content, and a footer. Below is a Easy example of how you can create structure of the HTML webpage:file: index.html HTML <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Tribute to A.P.J. Abdul Kalam</title> <link rel="stylesheet" href="styles.css"> </head> <body> <header> <h1>Tribute to A.P.J. Abdul Kalam</h1> </header> <div class="content"> <section class="biography"> <img src="https://media.geeksforgeeks.org/wp-content/uploads/20250417162607911633/APJ.jpg"> <h2>About A.P.J. Abdul Kalam</h2> <p>A.P.J. Abdul Kalam, the "Missile Man of India," was born on October 15, 1931, in Rameswaram, Tamil Nadu. He served as the 11th President of India and was a renowned scientist, known for his work in India's space and missile programs.</p> </section> <section class="achievements"> <h2>Achievements</h2> <ul> <li>Developed India’s first satellite launch vehicle (SLV-III)</li> <li>Led India's successful nuclear tests in 1998</li> <li>Wrote books like "Wings of Fire" and "India 2020"</li> <li>Received the Bharat Ratna, India's highest civilian award</li> </ul> </section> </div> <footer> <p>Created by Mahima Bhardwaj. All rights reserved.</p> </footer> </body> </html> Code Overview:We Have added a header for the webpage.A Biography section describing the person you are paying tribute to.A list of their achievement.A footer contain additional information.Simple HTML Tribute PageStyling with CSSNow that you’ve set up the HTML structure, it’s time to make your page more attractive. Here’s how you can style it:file: style.css C++ =/* General styling */ body { font-family: Arial, sans-serif; background-color: #f4f4f4; margin: 0; padding: 0; color: #333; } /* Header styling */ header { background-color: #006400; color: #fff; text-align: center; padding: 20px; } h1 { font-size: 36px; margin: 0; } /* Content styling */ .content { padding: 20px; max-width: 900px; margin: 0 auto; } /* Biography section styling */ .biography { background-color: #ffffff; padding: 20px; border-radius: 5px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); margin-bottom: 20px; } .biography h2 { font-size: 24px; margin-bottom: 10px; } /* Achievements section styling */ .achievements { background-color: #ffffff; padding: 20px; border-radius: 5px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } .achievements h2 { font-size: 24px; margin-bottom: 10px; } .achievements ul { list-style-type: disc; padding-left: 20px; } .achievements li { margin-bottom: 10px; } /* Footer styling */ footer { text-align: center; padding: 10px; background-color: #006400; color: #fff; position: fixed; bottom: 0; width: 100%; } Final Page After Adding CSSCode Overview :We have styled the body with a impressive background and text for readability.The header has different green background with white text focusing on the tribute.Content Sections like biography image and achievements are given padding and a subtle box shadow to create a card like effect.The footer is fixed at the bottom , it will ensure that footer is visible even when scrolling.Note: Designing a tribute webpage using HTML and CSS is a rewarding way to honor a person legacy. In this article you have learn about how to structure HTML and CSS and ensure it looks good on all devices using media queries. You can always increase a page by further adding more content or interactive features, to make it even more engaging. Comment More infoAdvertise with us Next Article Build a Survey Form using HTML and CSS I imsushant12 Follow Improve Article Tags : Web Technologies Web Templates Similar Reads How to Create a Website Using HTML and CSS? Creating a website using HTML and CSS is a foundational skill if you are learning web development. HTML (HyperText Markup Language) is used to structure content, while CSS (Cascading Style Sheets) is used for styling, including colors, fonts, margins, and positioning. In this article, weâll go throu 5 min read Design a Tribute Page using HTML and CSS Making a tribute page is an Innovative way to honor someone special in your life. In this article, we create a tribute webpage using HTML and CSS. This page has a simple and creative design. It contains a header with a title, a main section with text and images, and a footer for main details or cred 4 min read Build a Survey Form using HTML and CSS Creating a survey form is a great way to understand the basics of web development. In this article, we will build a Survey Form that allows users to easily submit their responses. The form will include different input types such as text fields, checkboxes, and radio buttons, all designed using HTML 4 min read Design a Parallax Webpage using HTML and CSS A parallax website includes fixed images in the background that are kept in place and the user can scroll down the page to see different parts of the image. In this article, we are creating a parallax webpage using HTML and CSS. We will use basic tags of HTML like div, paragraph, and heading to writ 4 min read Design an Event Webpage using HTML and CSS Creating an event webpage is an exciting way to showcase information about an event, including its schedule, speakers, and contact details. What Weâre Going to CreateWeâll create a webpage for a fictional event called "GeeksforGeeks TechCon 2025." This webpage will includeA header introducing the ev 5 min read Design a Webpage for online food delivery system using HTML and CSS Creating your own online food delivery website is a great way to present a user-friendly platform for customers to browse and order food online. In this project, weâll design a simple yet effective food delivery website using HTML and CSS.What Weâre Going to Create...Weâll develop a straightforward 7 min read Create a Homepage for Restaurant using HTML , CSS and Bootstrap HTML: HTML stands for Hyper Text Markup Language. It is used to design web pages using a markup language. HTML is a combination of Hypertext and Markup language. Hypertext defines the link between the web pages. A markup language is used to define the text document within the tag which defines the s 6 min read How to create a Landing page using HTML CSS and JavaScript ? A landing page, also referred to as a lead capture page, static page, or destination page, serves a specific purpose and typically appears as a result of online advertising or search engine optimization efforts. Unlike a homepage, a landing page is stripped of distractions and focuses on capturing v 7 min read Design a Webpage like Technical Documentation using HTML and CSS In this article, we will design a webpage-style technical documentation using HTML and CSS, which accounts for nearly 30% of the structure and user experience in many educational and product-based websites. Technical documentation refers to structured content that describes the functionality, usage, 3 min read Create a Music Website Template using HTML, CSS & JavaScript A Music Website Template is a pre-designed layout for creating a music-themed webpage. By utilizing HTML, CSS, and JavaScript, developers can craft a functional and visually appealing website with features like play/pause controls, sections for home, music, about, and contact.Step-by-Step Guide to c 3 min read Like