HTML Basics III Introduction

WHAT’S WRONG WITH MY CODING

<!DOCTYPE html>
<html>
	<head>
		<title>Table Time</title>
	</head>
	<body>
       <a href="http://www.britishairways.com/travel/home/public/en_gb">
		<h1 style="font-family:Arial">Tables Are Mega Sweet</h1>
		<img src="https://laineytweed.files.wordpress.com/2013/03/cupcake2.jpg"/>
		
		
	</body>
</html>

Oops, try again. Make sure to put in at least two images: one regular, the other a link

Two images:

<img src="imageurl" /> <!-- One regular -->

<a href="url">
    <img src="imageurl" /> <!-- One a link -->
</a>

got it thanks and have a good day!

1 Like