HTML (Hyper Text Markup Language)

This page, almost all webpages are written in the HTML markup language, which is an instance of XML.

An HTML document comprises an <html> top element, which comprises an optional <head> element and a <body> element.

The first line of an HTML documents is usually a document type declaration like:

<!DOCTYPE html>

which, very much XML-wise, declares the top element to be html.

The <body> Element*