What is HTML?

HTML is Hypertext Markup Language. It is the standard markup language and used for creating web pages.


Example

<!DOCTYPE html>
<html>
    <head>
        <title>HTML Tutorial</title>
    </head>
    <body>
        <h1>This is a Heading</h1>
        <p>This is a paragraph.</p>
    </body>
</html>

Create index.html file and put above code then you have to open this file in your browser you will see a following output.


output:

This is a Heading
This is a paragraph.