See if this works for you! Iāve written the explanation in the code as comments!
<!DOCTYPE html>
<html>
<head>
<title>Table Time</title>
</head>
<body>
<!-- Make sure you nest your image in between your <a href=""></a> tags ----->
<h1 style="font-family:Arial">Tables Are Mega Sweet</h1>
<img src="https://s-media-cache-ak0.pinimg.com/564x/c1/a5/56/c1a5560dd3a565075fac3bbfc5a4e47f.jpg"/>
<a href="https://www.codecademy.com"/>clickhere</a>
<!-- The code you have above should be written like this below: --->
<h1 style="font-family:Arial">Tables Are Mega Sweet</h1>
<a href="https://www.codecademy.com"/><img src="https://s-media-cache-ak0.pinimg.com/564x/c1/a5/56/c1a5560dd3a565075fac3bbfc5a4e47f.jpg"/></a>
<!-- You now have one image as a LINK, now all you need to do is add another image --->
<img src="link to another image here"/>
</body>
</html
@codejumper07769
Under certain circumstances
you will be required to use the so-called XML-syntax for self-closing HTML-tags
like the img-Tag,
by using an extra-space-character before the ācloserā
like <img src="link to another image here" />
instead of <img src="link to another image here"/>
You are a new user, but thatās not the reason. When you put < and > in posts, it assumes them to be tags that you are trying to style the post with, and not the code example youāre giving. If youād like these to show up, however, the easiest way to do this is with triple backticks: