This is the code for HTML
<!DOCTYPE html>
<html>
<head>
<title>Hello</title>
</head>
<body>
<h1>TITLE</h1>
<h2>Welcome to my website</h2>
<img src="PICTURE.jpg">
<a href="https://the-klein-academy.blogspot.com/" target="Blank">Click Me!</a>
</body>
</html>
THIS IS WITH HTML & CSS
<!DOCTYPE html>
<html>
<head>
<title>Hello</title>
</head>
<body>
<h1>TITLE</h1>
<h2>Welcome to my website</h2>
<img src="PICTURE.jpg">
<a href="https://the-klein-academy.blogspot.com/" target="Blank">Click Me!</a>
</body>
<style>
h1 {color:blue;
font-size: 40px;
text-align: center;}
h2 {color: red; font-size:20px; text-align:center;}
body {background-color:pink;}
p {font-size:20px;
text-align:left;}
img {width:450px;margin-left:auto; margin-right:auto;display:block;}
a{font-size:20px;}
</style>
</html>