What is HTML?

HTML is the programming language for creating Web pages.

HTML stands for 'Hyper Text Markup Language'

  • HTML describes the structure of a Web page

  • HTML pages are made up of 'tags'

  • HTML elements tell the browser how to display the content

  • Browsers do not display the HTML tags, but use them to render the content of the page

Examples of HTML tags
<header>
    Header Name
</header>

<paragraph>
    Paragraph Content
</paragraph>

Last updated

Was this helpful?