Introduction To HTML
Introduction To HTML
HTML (HyperText Markup Language) is the standard language used to create and design web
pages. It provides the structure of a webpage using a system of tags and attributes.
1. What is HTML?
- HTML consists of a series of elements used to enclose or wrap different parts of content.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
4. Attributes:
5. Comments in HTML:
6. HTML Versions:
HTML is the foundation of all web development and is essential for creating modern, responsive
websites.