HTML provides a way of displaying Web pages with text and images or multimedia content. HTML is not a programming language but a markup language. An HTML file is a text file containing small markup tags.
The markup tags tell the Web browser, such as Mozilla Firefox or Google Chrome. How to render the web page. An HTML file must have an HTML or HTML file extension. HTML stands for HyperText Markup Language.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<h2>My Second Heading</h2>
<h3>My Third Heading</h3>
<p>My paragraph.</p>
</body>
</html>
<!DOCTYPE html>
: Doctype tells Browser this HTML Page.<head>
: head tag help to define Page Information. Head Tag Do Not Display inside browser.<body>
: body define Body Information.Body Tag Always Show Inside Your Website web page. We define the h1,h2,h3, and p tags Inside the Body tag and use other Tags.