Introduction
HTML stands for HyperText Markup Language. It is the foundation of every website on the internet. HTML is used to structure content like headings, paragraphs, images, links, and forms.
What Is HTML?
HTML uses tags to define elements on a webpage. These tags tell the browser how to display content.
For example:
Β
<!DOCTYPE html>
<html>
<head>
<title>My First Web Page</title>
</head>
<body>
<h1>Hello World</h1>
<p>This is my first website.</p>
</body>
</html>
<html>
<head>
<title>My First Web Page</title>
</head>
<body>
<h1>Hello World</h1>
<p>This is my first website.</p>
</body>
</html>
Important HTML Tags
<h1>to<h6>β Headings<p>β Paragraph<a>β Link<img>β Image<div>β Section container
