What is HTML?


1. Hyper Text Markup Language is, as the name suggests, a markup language which is used to present the data on the web


2. HTML consists of a series of elements.


3. A markup language is a language that is used to highlight the core text and provide it a structure. Here the markup is used to specify hypertext i.e. text which is a link to another resource such a page or a document

4. HTML elements label of content such as heading, paragraph, etc.


HTML Structure




HTML Document


<!DOCTYPE html>
<html>
    <head>
        <titleHere is page title </title>
    </head>

    <body>

        <h1This is Heading</h1>
        <pThis is paragraph.</p>

    </body>
</html>