<!DOCTYPE html>

This tells the web browser what type of page its suppose to load.

<html lang="en">

Sets the document's text to be displayed in the English language.

<head>

This is the Head section, it contains information about the webpage.

<meta charset="UTF-8" />

Unicode UTF-8

<meta name="viewport" content="width=device-width, initial-scale=1" />

Scales content to fit nicely on the screen.

<title>Insert Title Here</title>

This line sets the title of the webpage. The name "shown" in the browser tab.

<link href="style.css" rel="stylesheet">

Sets the style of the page with CSS.

</head>

This is closing the Head section,

<body>

This is the body. It's where you'll find the website's main content.

</body>
<footer>insert footer here</footer>

footer section.