<!DOCTYPE html>
<html>
<head>
<title>Your web page title</title>
<style>
body {
background-color: #000000;
}
p {
font-family: “Times New Roman”;
font-size: 16px;
}
</style>
</head>
<body>
<p>The content you want to display to users. </p>
<a href=”myotherpage.html” target=”_blank”>See my other page.</a>
<img src=”myimage.png” alt=”My product image”>
</body>
</html>