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

0 points
Submitted by Lindsey Wolper
over 8 years

Here is the code that didn't appear in my question-sorry

<a href="http://www.bizarbin.com/wp-content/uploads/2014/02/scary-mugshots-22-40.jpg"/>
<img src="https://www.facebook.com/pratt.mattison?fref=photo" /></a>
<img src="IMAGESOURCE"></a>
<img src="https://scontent-sjc2-1.xx.fbcdn.net/hphotos-xfa1/v/t1.0-9/1915339_1264249090539_5734300_n.jpg?oh=cb826eaca8eb446c91b91176a526ef3b&oe=568C10C9" />

<a href=”This is the worst guy ever!”

Answer 560f933593767661150000b4

0 votes

Permalink

couple of problems, let’s start here: (i might leave out attributes in some of the examples, to make the code easier readable)

<a href="http://www.bizarbin.com/wp-content/uploads/2014/02/scary-mugshots-22-40.jpg"/>
<img src="https://www.facebook.com/pratt.mattison?fref=photo" /></a>

the problem here is that your link opening tag, which is suppose to look like: <a>, yours look like: <a/>, no need to put a slash there, link has a closing tag.

this is weird:

<img src="IMAGESOURCE"></a>

you have a image tag, which is self-closing. then you have a link closing tag (there is no opening tag), i recommend you change the image to a link opening tag, and add some text between the opening and closing link tag.

Then you have your 3 required elements: a image, a linked image and a regular link.

points
Submitted by stetim94
over 8 years