github_pages
click on this image for part 1 of the tutorial

We will be using GitHub pages to host the website

HTML

Hyper Text Markup Language

The Standard markup language for creating Web pages.

Describes the structure of a Web page

Tell the browser how to display the content

Boilerplate HTML
Pressing ! and enter on a blank VS code document will generate this template
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>

</body>
</html>
w3schools
w3schools

Edit to your liking....

Bootstrap Template
Alternatively, you can find other templates out there and modify them

preview
bootstrap

Get a Custom Domain (optional) Using GitHub Education