<!DOCTYPE html>
<head>
<!-- head goes in here -->
</head>
<body>
<!-- body goes in here -->
</body>
<title>this is the title of your website</title>
<link rel="stylesheet" href="style.css">
<h1>this text is really big</h1>
<h2>this is a slightly smaller text</h2>
<h3>and this text is even smaller, you can go all the way down to h6<h3>
<a href="example.com">a link is like a portal</a>
<a href="mailto:hello@example.com">SEND ME AN EMAIL</a>
<img src="cat.jpg" alt="a description of your image">
<img src="https://www.germanshepherds.com/attachments/dsc01667-jpeg.617754/" alt="a description of the image">
<p>this is a paragraph</p>
<p>this is another paragraph</p>
this is a paragraph
this is another paragraph
<ul>
<li>this</li>
<li>is</li>
<li>an</li>
<li>unordered</li>
<li>list</li>
</ul>
<ol>
<li>this</li>
<li>is</li>
<li>an</li>
<li>ordered</li>
<li>list</li>
</ol>