HTML Introduction
01
What is HTML?
HTML stands for Hyper Text Markup Language. It is the standard markup language for creating Web pages and describes the structure of a Web page.
Example
The basic HTML document skeleton.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>