<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>
6.link em up
Oops, try again. Make sure you wrap each tag in tags!
<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>
6.link em up
Oops, try again. Make sure you wrap each tag in tags!
Hi
you are mixing a little bit all the tags For example you write for the first image
<a href="..."> <td> <img src="..."/> </a> </td> ### incorrect
here we see that inside the <a>
tag, you open a <td>
which is closed after </a>
whereas it should be opened before <a>
, like in the following line
<td> <a href="..."> <img src="..."/> </a> </td> ### correct
I hope that it will help
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.