Rajdeep Singh.

What is HTML?

HyperText Markup Language used to define your web page structure inside your web browser.

By html 1 min read

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>