HTML Project1
HTML Project1
Question:
You are shown the output photo of a webpage. This webpage contains a Personal Profile
Card that includes your name, a short description about you, your hobbies, contact details,
and a footer message.
In the photo, you see the following sections:
1. Header:
- Your name is displayed in a big, bold font.
- Below your name, there is a short description about your profession or role.
2. About Me Section:
- There is a heading titled "About Me".
- A short paragraph explaining who you are and what you do.
3. Hobbies Section:
- A heading titled "Hobbies".
- A list of hobbies, shown with bullet points (like video editing and traveling).
4. Contact Section:
- A heading titled "Contact".
- A clickable link to your Instagram profile.
5. Footer:
- At the bottom of the page, there is a small message saying "Thanks for visiting my
profile!".
________________________________________
Your task:
Write the HTML code for the webpage shown in the output photo. Use the correct tags to
create the profile card. Follow the instructions carefully to create the following sections:
1. Header:
- Use an appropriate tag for your name and the description below it.
2. About Me:
- Use a heading tag for the title "About Me".
- Write a small paragraph that describes who you are and what you do.
3. Hobbies:
- Use a heading tag for the title "Hobbies".
- List at least two hobbies using bullet points.
4. Contact:
- Use a heading tag for "Contact".
- Provide a clickable link to your Instagram using the <a> tag. Make sure it opens in a new
tab.
5. Footer:
- Write a closing message saying "Thanks for visiting my profile!".
- Add the copyright message at the bottom with your name and the year.
________________________________________
What to use in your code:
1. <header>: To create the section that contains your name and short description.
2. <h1>, <p>: To display the name and short description.
3. <section>, <article>: To group related content like About Me and Hobbies.
4. <ul>, <li>: To create a list of hobbies.
5. <a>: To create a clickable link for Instagram.
6. <footer>: To include the footer message at the bottom of the page.
7. <hr>: To create horizontal lines between sections.
________________________________________
Example Output:
The output should look like a Profile Card with your name at the top, followed by a
description, hobbies, a clickable Instagram link, and a footer message. Make sure to follow
the structure and use the right tags!
<!DOCTYPE html>
<html>
<head>
<title>Personal Profile Card</title>
</head>
<body>
<article>
<h2>Hobbies</h2>
<ul>
<li>Exploring video editing techniques</li>
<li>Traveling to scenic places</li>
</ul>
</article>
</section>
<hr>
<!-- Contact Section -->
<aside>
<h2>Contact</h2>
<p> Instagram: <a href="https://instagram.com/Vamsi_journey"
target="_blank">Vamsi_journey</a></p>
</aside>
</main>
</body>
</html>