π Lesson 1.10 β Mini Project: Student Profile Website
π Building Your First Complete Personal Website Using HTML
π― Learning Objectives
After completing this lesson, students will be able to:
β Apply all HTML concepts learned in Module 1
β Create a complete webpage from scratch
β Use Semantic HTML Elements
β Add Images and Links
β Create Tables and Lists
β Organize content professionally
β Build a Student Profile Website
β Prepare for CSS Styling in Module 3
π Introduction
Congratulations! π
You have completed:
β HTML Basics
β HTML Structure
β Headings & Paragraphs
β Text Formatting
β Lists
β Hyperlinks
β Images
β Tables
β Semantic HTML
Now it is time to combine everything and build a complete project.
This project is called:
π¨βπ Student Profile Website
π What is a Student Profile Website?
A Student Profile Website is a webpage that introduces a student and displays:
- Personal Information
- Education Details
- Skills
- Hobbies
- Contact Information
It acts like an online resume.
π― Project Features
Our website will contain:
β Header
β Navigation Menu
β Student Photo
β About Me Section
β Skills Section
β Education Table
β Hobbies List
β Contact Information
β Footer
ποΈ Website Layout
------------------------------------------------
STUDENT PROFILE WEBSITE
------------------------------------------------
HOME | ABOUT | SKILLS | EDUCATION | CONTACT
------------------------------------------------
PHOTO
NAME
INTRODUCTION
------------------------------------------------
ABOUT ME
------------------------------------------------
SKILLS
------------------------------------------------
EDUCATION TABLE
------------------------------------------------
HOBBIES
------------------------------------------------
CONTACT DETAILS
------------------------------------------------
FOOTER
------------------------------------------------
π Project Folder Structure
Create a folder:
StudentProfile
Inside it create:
StudentProfile
β
βββ index.html
β
βββ student.jpg
π» Complete Project Code
Create:
index.html
and write:
<!DOCTYPE html>
<html>
<head>
<title>Student Profile Website</title>
</head>
<body>
<header>
<h1>Student Profile Website</h1>
</header>
<hr>
<nav>
<a href="#home">Home</a> |
<a href="#about">About</a> |
<a href="#skills">Skills</a> |
<a href="#education">Education</a> |
<a href="#contact">Contact</a>
</nav>
<hr>
<main>
<section id="home">
<h2>Home</h2>
<img src="student.jpg"
alt="Student Photo"
width="200">
<h3>Rahul Kumar</h3>
<p>
Welcome to my personal profile website.
</p>
</section>
<hr>
<section id="about">
<h2>About Me</h2>
<p>
I am a Polytechnic student passionate about technology, programming, and web development.
</p>
<p>
I enjoy learning new skills and creating projects.
</p>
</section>
<hr>
<section id="skills">
<h2>My Skills</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>Computer Fundamentals</li>
<li>MS Office</li>
<li>Internet Applications</li>
</ul>
</section>
<hr>
<section id="education">
<h2>Education</h2>
<table border="1">
<tr>
<th>Qualification</th>
<th>Institute</th>
<th>Year</th>
</tr>
<tr>
<td>10th</td>
<td>ABC School</td>
<td>2022</td>
</tr>
<tr>
<td>Polytechnic</td>
<td>XYZ Polytechnic</td>
<td>2026</td>
</tr>
</table>
</section>
<hr>
<section>
<h2>My Hobbies</h2>
<ol>
<li>Reading Books</li>
<li>Programming</li>
<li>Playing Games</li>
<li>Watching Technology Videos</li>
</ol>
</section>
<hr>
<section id="contact">
<h2>Contact Information</h2>
<p>
Email:
student@example.com
</p>
<p>
Phone:
9876543210
</p>
<p>
Address:
Ranchi, Jharkhand
</p>
</section>
</main>
<hr>
<footer>
<p>
Β© 2026 Student Profile Website
</p>
</footer>
</body>
</html>
π Project Analysis
This project uses almost every concept learned in Module 1.
| Concept | Used |
|---|---|
| HTML Structure | β |
| Headings | β |
| Paragraphs | β |
| Text Formatting | β |
| Lists | β |
| Hyperlinks | β |
| Images | β |
| Tables | β |
| Semantic Elements | β |
π― Expected Output
Students will see:
Student Profile Website
Navigation Menu
Home | About | Skills | Education | Contact
Student Photo
Student Name
Introduction
Skills Section
- HTML
- CSS
- Computer Fundamentals
- MS Office
Education Table
| Qualification | Institute | Year |
|---|---|---|
| 10th | ABC School | 2022 |
| Polytechnic | XYZ Polytechnic | 2026 |
Hobbies Section
- Reading Books
- Programming
- Playing Games
- Watching Technology Videos
Contact Information
Phone
Address
Footer
Copyright Information
π Customization Activity
Replace:
Rahul Kumar
with your own name.
Replace:
ABC School
with your school.
Replace:
XYZ Polytechnic
with your college.
Replace:
student@example.com
with your email.
Replace:
9876543210
with your mobile number.
Replace:
student.jpg
with your own photograph.
π Challenge Activity
Add:
β Favorite Subjects
β Career Goal
β Social Media Links
β Achievement Section
β Project Section
π Real World Applications
Portfolio websites are used by:
- Students
- Developers
- Engineers
- Designers
- Freelancers
to showcase their work and skills online.
π Practical Activity
Create your own:
Student Profile Website
Include:
β Your Photo
β About Yourself
β Skills
β Education
β Hobbies
β Contact Information
Run it in Chrome Browser.
Take a Screenshot.
π Assignment
Assignment 1.10
- Create a Student Profile Website.
- Add your own photo.
- Add at least 5 skills.
- Create an education table.
- Add your hobbies.
- Add contact details.
- Add navigation links.
π§ Quiz
Q1. What type of website did we create?
A. E-Commerce Website
B. News Website
C. Student Profile Website
D. Banking Website
β Answer: C
Q2. Which section contains qualifications?
A. Skills
B. Education
C. Contact
D. Hobbies
β Answer: B
Q3. Which tag displays images?
A. <image>
B. <picture>
C. <img>
D. <photo>
β Answer: C
Q4. Which tag creates navigation links?
A. <header>
B. <nav>
C. <footer>
D. <section>
β Answer: B
Q5. Which semantic tag contains the main content?
A. <footer>
B. <aside>
C. <main>
D. <nav>
β Answer: C
π Module 1 Summary β HTML Fundamentals
You have successfully learned:
β Lesson 1.1 β What is HTML?
β Lesson 1.2 β Structure of an HTML Document
β Lesson 1.3 β Headings & Paragraphs
β Lesson 1.4 β Text Formatting Tags
β Lesson 1.5 β Lists
β Lesson 1.6 β Hyperlinks & Navigation
β Lesson 1.7 β Images & Multimedia
β Lesson 1.8 β Tables
β Lesson 1.9 β Semantic HTML Elements
β Lesson 1.10 β Student Profile Website Project