I'm having trouble with the adding images exercise

I think my code is correct, but the “your 'img src=”…"/>’ tag is missing the ‘src’ attribute" message keeps showing up…


<!DOCTYPE html>
<html>
	<head>
		<title>images</title>
	</head>
	<body>
		<img src="https://s3.amazonaws.com/codecademy-blog/assets/f3a16fb6.jpg" />
       <img scr="https://s3.amazonaws.com/codecademy-blog/assets/ninja_zpsa5dbe37a.jpg" />
       </body>
       
</html>

second src is misspelled. you put scr instread of src

Also remove the spacing from around the text in the tag

Instead of:

< head > 
		< title > images </ title > 
	</ head > 

It should be:

<head> 
		<title> images </title> 
	</head> 

However for the image tag the space between .. " and />

Should be left

My code is also not working

my page
</body>

Please paste in your code using this format