Computer Project – Class VII (CBSE)
Topic: Introduction to HTML – Creating a Simple Web Page
Student Name:
Class & Section:
Subject: Computer / IT
Session: 2025–26
Introduction:
HTML is the basic language used to create web pages. Every website on the internet is built
using HTML.
What is HTML?
HTML stands for HyperText Markup Language. It is used to design the structure of web
pages.
Features of HTML:
• Easy to learn
• Platform independent
• Used to create web pages
• Supports text, images, and links
Basic Structure of HTML:
HTML document consists of html, head, title, and body tags.
Sample HTML Code:
<!DOCTYPE html>
<html>
<head>
<title>My First Web Page</title>
</head>
<body>
<h1>Welcome</h1>
<p>This is my first HTML project.</p>
</body>
</html>
Applications of HTML:
• Websites
• Blogs
• Educational platforms
Conclusion:
HTML is simple and useful. Learning HTML helps in understanding web design basics.