This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by novice_coder
almost 10 years

Trouble with lesson 12/14

I am having trouble with excercise 12/14. The error message when i submit my code says “don’t forget and . I thought i put them in the right place. here is my code:

<!DOCTYPE html>
<html>
    <head>
        <title></title>
    </head>
    <body>
        <img src="http://s3.amazonaws.com/codecademy-blog/assets/f3a16fb6.jpg" />
        <img src="http://media-cache-ec0.pinimg.com/736x/44/a1/e9/44a1e92465f88dacad26870feec71dea.jpg" />
        <img src="http://media-cache-ec0.pinimg.com/736x/e1/d8/42/e1d842e0953f3fccb868b89ed9192541.jpg />
<a href="http://codecademy.com">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRmA1iXqP3LCrXJR7SM7BMH8DCDtziX_Y_oQ-SWHko8-DPjr-dIM80aJg" /> 
</a>
    </body>
</html>

Please tell me what i am doing wrong or missing.

Answer 54359a007c82ca02cd00056e

5 votes

Permalink

This worked for me very well:

<!DOCTYPE html>
<html>
    <head>
        <title></title>
    </head>
    <body>
    <a href="http://www.codecademy.com">
        <img src="http://s3.amazonaws.com/codecademy-blog/assets/f3a16fb6.jpg" />
        <img src="http://s3.amazonaws.com/codecademy-blog/assets/ninja_zpsa5dbe37a.jpg" />
    </a>
    </body>
</html>
points
Submitted by virtualarrow
over 9 years

2 comments

Tony about 9 years

thanks it worked but didnt i need to start with ?

Sahibdeep Singh almost 9 years

I got this:

Answer 539d872b9c4e9dbf60000b22

-1 votes

Permalink

Can you post your code? check here how to display your code

points
Submitted by stetim94
almost 10 years

Answer 53a4fc06548c352e5900095e

-1 votes

Permalink

The smiley face link part of your code works. Nothing wrong. Tested it. Displays smiley facey and leads to Codecademy’s home page.

points
almost 10 years

Answer 53a52b6e80ff33ab90000f62

-1 votes

Permalink

You forgot the closing quotation mark of the third image. this: img src=”http://media-cache-ec0.pinimg.com/736x/e1/d8/42/e1d842e0953f3fccb868b89ed9192541.jpg

instead of this: img src=”http://media-cache-ec0.pinimg.com/736x/e1/d8/42/e1d842e0953f3fccb868b89ed9192541.jpg

format is not correct, because it allows me to make the “ bold.

here is how it should be (formatted right): <img src="http://media-cache-ec0.pinimg.com/736x/e1/d8/42/e1d842e0953f3fccb868b89ed9192541.jpg" /> this is you third image.

points
Submitted by stetim94
almost 10 years