HTML

HyperText Markup Language is the standard markup language for web documents. “Hypertext” refers to links that connect texts to one another. “Markup” refers to the annotation of content for formatting. HTML describes the structure of a web page semantically.

Markup

<!DOCTYPE html>
<html>
  <head>
    <title>Title</title>
  </head>
  <body>
    <div>
      <p>Hello world!</p>
    </div>
  </body>
</html>

Tags

Attributes