I am stuck at 13.what did i do wrong

<!DOCTYPE html>
<html>
	<head>
		<title></title>
	</head>
	<body>
	<a>img src ="http://www.codeacademy.com? ></a>
	<img src="http://www.codeacademy.com-blog/ninja"/>
	<a href="http://www.codeacademy.com></a>
		
		
		
		
	</body>
</html>
<a><!-- missing < -->img src ="http://www.codeacademy.com?<!-- missing " --> ></a>
<img src="http://www.codeacademy.com-blog/ninja"/>
<a href="http://www.codeacademy.com <!-- missing " --> > <!-- no text here --> </a>

Hi,

In line No 6 : img src ="http://www.codeacademy.com? >
src= we need to give like this no space needed in between src and equal
Then before img src tag need to give** <** symbol and end the url with ** " ** symbol

In line No 8 : <a href="http://www.codeacademy.com>
Need to close the url with " symbol

Use the below code









FYI: Image is not loaded. So use the image link directly or use the local image which is saved in your system

e.g. use this link to load the browser image
https://lh4.ggpht.com/wKrDLLmmxjfRG2-E-k5L5BUuHWpCOe4lWRF7oVs1Gzdn5e5yvr8fj-ORTlBF43U47yI=w300-rw

Thank you for trying to help, @darsthyeshwin, but next time could you try and post the code as text, rather than images? Thanks.


To format your code to make it visible:
1. Paste your code.
2. Select all of your code.
3. Do Ctrl + Shift + C (Windows) or CMD + Shift + C (Mac OSX) to format your code.

OR

1. Paste your code in.
2. Insert 3 backticks (`) before and after your code:

```
Code goes here
```

Thanks,
JibblyJ

Thanks for the suggestion. Next time onwards i will follow this method

2 Likes