Notes On ...

HTML

Hyper Text Markup Language

<!DOCTYPE html>
<html>
  <head>
    <title>This is HTML</title>
  </head>
  <body>
    <h1>This is an HTML header</h1>
  </body>
</html>

Html is a markup language that defines the structure of the content of a webpage. It is based on SGML (Standard Generalized Markup Language) and uses opening/closing tags to give organization to otherwise meaningless text: <p>hi</p>

The language underwent many changes until 2008, when it was standardized as its current form: HTML5

Some tags that HTML provides:

HTML files contain a hierarchy of nodes based on the DOM (Document Object Model):

HTML works in conjunction with CSS and JavaScript to provide complete websites.