Now that our head is configured, we can add something to the body of our website. This is the stuff that's actually going to be viewable inside the viewport. Next to the head, we'll open and close the body tag:
<body>
</body>
Inside body again, we'll provide two things: an h1 title and a p paragraph tag.
The title is going to match the title tag we used in the head, Help Page, and the paragraph will just have some filler text—Some text here:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Help Page</title>
</head>
<body>
<h1>Help Page</h1>
<p>Some text here</p>
</body>
</html>
Now we have an HTML page and the goal is to be able to serve this page up in our Express app without having to manually configure it.