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>