HTML Basics III - Adding 2 images

I need help. Can someone point out my mistake?

https://www.codecademy.com/courses/web-beginner-en-f8mcL/0/1?curriculum_id=50579fb998b470000202dc8b#

https://www.codecademy.com/courses/web-beginner-en-f8mcL/0/1?curriculum_id=50579fb998b470000202dc8b#

I keep getting this error message. I can not figure out what I have missed. Any help is appreciated.
Thank you.
“Oops, try again. Make sure to put in at least two images: one regular, the other a link.”



<!DOCTYPE html>
<html>
	<head>
		<title>Table Time</title>
	</head>
	<body>
		<h1 style="font-family: arial">Tables Are Mega Sweet</h1>
		<img src="https://smallbiztrends.com/2016/03/what-is-a-gif.html" />
		<a href="https://goo.gl/images/Lu0l3y">cool</a>
		
		
	</body>
</html>


The syntax for an image LINK is

<a href="link"><img src="random_image.jpg"></a>

They want one image and one image link.

1 Like

Thank you. I understand your instructions, will try again and hopefully succeed.

Have a great day.

IT WORKED!

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.