HTML REFERENCE

THE "<html>" DOCUMENT (MAIN ROOT)

The HTML element represents the root (top-level element) of an HTML document,
so it is also referred to as the root element. All other elements must be descendants of this element.

...


THE DOCUMENT META DATA "<head>"

The <head> HTML element contains machine-readable information (metadata)
about the document, like its title, scripts, and style sheets.

...


THE DOCUMENT META DATA "<link>"

The <head> HTML element contains machine-readable information (metadata)
about the document, like its title, scripts, and style sheets.

...


THE DOCUMENT META DATA "<meta>"

The <head> HTML element contains machine-readable information (metadata)
about the document, like its title, scripts, and style sheets.


...


THE DOCUMENT META DATA "<title>"

The <title> HTML element defines the document's title that is shown in a browser's title bar or a page's tab.
It only contains text; tags within the element are ignored.


...



"A"<a>"

The <a> HTML element (or anchor element), with its href attribute, creates a hyperlink to web pages, files, email addresses,
locations in the same page, or anything else a URL can address.


...


"A"<audio>"

The <audio> HTML element is used to embed sound content in documents. It may contain one or more audio sources,
represented using the src attribute or the <source> element:


...