HTML


HTML stands for Hyper Text Markup Language. HTML is the standard markup language for creating Web pages. HTML describes the structure of a Web page. HTML consists of a series of elements. HTML elements tell the browser how to display the content.

HTML—“HyperText Markup Language”—is the language used to tell your web browser what each part of a website is. So, using HTML, you can define headers, paragraphs, links, images, and more, so your browser knows how to structure the web page you're looking at.

Basic Example of HTLM Page

        
    <!DOCTYPE html>
    <html>
        <head>
            <title>Title of Page</title>
        </head>
        <body>
            <h1>Heading of Page</h1>
            <p>paragraph of Page.</p>
        </body>
    </html>