xxxxxxxxxx
<!DOCTYPE html>
<html>
<!--this is the head with title, meta, and link to css-->
<head>
<title>My Webpage</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.css">
</head>
<!--this is the body with heading tag, paragraph, image, and link-->
<body>
<h1>This is the heading</h1>
<p>This is the sample paragraph </p>
<img src="image.jpg" alt="This is the sample image">
<a href="https://www.example.com">this is the sample link</a>
</body>
</html>