Click on the link for HTML examples for your web page. If you want to practice at home, you can use Visual Studio Code or even Notepad. Just save as an HTML not txt file. Some semantic tags.  Here's some more HTML code to get you started:

<!DOCTYPE html>
<html>

<head>
<title>Page Title</title>
</head>
<body>

<h1>My First Heading</h1>

<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>

<p>My first paragraph.</p>

<a href="https://www.w3schools.com">This is a link</a>

<img src="/w3schools.jpg" alt="W3Schools.com" width="104" height="142">

<button>Click me</button>


<h2>An Unordered HTML List</h2>

<ul>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ul>  

<h2>An Ordered HTML List</h2>

<ol>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>

</body>
</html>

https://voucherschool.com/classes/web-developer/118-thank-you-for-the-opportunity-and-goodbye