Correct page structure:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
Document contents.
</body>
</html>
- The <!DOCTYPE>, suprisingly, declares what type of document
this is.
- The <html>, <head> and <body> tags structure the
document.
- The head contains information about the document; the document itself
is in the body.
- The <meta> tag can provide various information about a
document. Here, it describes how the characters are encoded.
- The <!DOCTYPE> and <meta> tags are two of a very
few that have no closing tag.