HTML Introduction

HTML is the standard markup language for creating Web pages.

What is HTML?

is the standard markup language for creating Web pages.

  • 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.
  • It is a light-weighted and interpreted language.
  • HTML elements tell the browser how to display the content

  • A Simple HTML Document

    <!DOCTYPE html>
    <html>
    <head>
    <title>Page Title</title>
    </head>
    <body>

    <h1>My First Heading</h1>
    <p>My first paragraph.</p>

    </body>
    </html>

    What is an HTML Element?

    An HTML element is defined by a start tag, some content, and an end tag:

    <tagname> Content goes here...</tagname >