ASSIGNMENT
🎯 Objective
Build a CV-style personal webpage using HTML and inline CSS styling, making sure to include
a table.
Deadline: 19th Aug, 2025, 11:59 PM.
Please commit each and every part separately.
🔹 Part 1: Basic Structure
Task 1: Create an HTML file with basic structure (<!DOCTYPE html>, <html>, <head>,
<title>, <body>).
🔹 Part 2: Header Section
Task 2: Add your name and tagline using <h1> and <h3>.
Task 3: Insert a profile picture (<img>).
🔹 Part 3: Contact Section
Task 4: Add contact info (email, phone, LinkedIn) using <ul> or <dl>.
🔹 Part 4: About Me
Task 5: Write a short intro with <p>, highlight text with <b>, <i>, <u>.
🔹 Part 5: Education Section (with Table)
Task 6: Create a table with inline styling.
● Use <table> with border and cell padding.
● First row should be <th> headings: Year, Degree, Institute.
● Next rows: your education details.
👉 Example (students must style it inline):
<table style="border:1px solid black; border-collapse:collapse;
width:80%;">
<tr>
<th style="border:1px solid black; padding:8px;">Year</th>
<th style="border:1px solid black; padding:8px;">Degree</th>
<th style="border:1px solid black; padding:8px;">Institute</th>
</tr>
<tr>
<td style="border:1px solid black; padding:8px;">2022</td>
<td style="border:1px solid black; padding:8px;">B.Tech in
CSE</td>
<td style="border:1px solid black; padding:8px;">XYZ College</td>
</tr>
</table>
🔹 Part 6: Skills
Task 7: Add skills using <ul> or <ol>.
(Optional: Use <progress> or <meter> for skill level).
🔹 Part 7: Projects
Task 8: Add projects with <h4> and <p>, wrap inside <div> with inline style.
🔹 Part 8: Hobbies
Task 9: Add hobbies in a list with emojis or icons.
🔹 Part 9: Footer
Task 10: Add a footer with copyright (© 2025 Your Name).