0% found this document useful (0 votes)
5 views1 page

HTML First Day Lesson

The document provides an introductory lesson on HTML, explaining its purpose as a markup language for creating web pages. It includes basic HTML code examples, important tags, and a practice code section for students to apply what they've learned. Key tags discussed include html, head, title, body, h1, p, b, and br.

Uploaded by

tejashpatel02010
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

HTML First Day Lesson

The document provides an introductory lesson on HTML, explaining its purpose as a markup language for creating web pages. It includes basic HTML code examples, important tags, and a practice code section for students to apply what they've learned. Key tags discussed include html, head, title, body, h1, p, b, and br.

Uploaded by

tejashpatel02010
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

HTML First Day Lesson for Students

1. What is HTML?
HTML (HyperText Markup Language) is used to create web pages.

2. Basic HTML Code


<!DOCTYPE html>
<html>
<head>
<title>My First HTML Page</title>
</head>
<body>

<h1>Welcome to HTML Class</h1>


<p>My name is Krunal.</p>
<p>I am learning HTML.</p>
<p><b>HTML</b> is used to create web pages.</p>
<br>
<p>This is my first web page.</p>

</body>
</html>

3. Important Tags
html - main tag, head - page info, title - page title, body - content, h1 - heading, p - paragraph, b -
bold, br - line break

4. Practice Code
<!DOCTYPE html>
<html>
<head>
<title>Practice Page</title>
</head>
<body>
<h1>My Introduction</h1>
<p>Name: Your Name</p>
<p>Course: HTML</p>
</body>
</html>

You might also like