Website 101
This section is geared towards an audience who has little to no knowledge of how websites work. In particular, HTML elements and their purposes. In general, an HTML document has the following structure. An <html> element with a <head> element and <body> element inside it.
<html>
<head>
<!-- content -->
</head>
<body>
<!-- content -->
</body>
</html>