I would like to put an image after a table can you help me because my image goes juste before the table? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

I would like to put an image after a table can you help me because my image goes juste before the table?

<html> <head><title>Le Tableau</title></head> <p>Prix pains au chocolat</p><table border="3"> <tr> <td>August</td> <td>December</td> <td>January</td> </tr> <tr> <td>1,56

lt;/td> <td>1,32
lt;/td> <td>1.60
lt;/td> </tr> <body> <image src="chocolat.jpg" height="150px" width="150px" alt="" /> </body></html>

30th Jul 2016, 11:42 PM
Julian Grondin
Julian Grondin - avatar
8 Answers
+ 1
Put the <body> before the <table> and put </table> after </tr>
31st Jul 2016, 7:53 AM
Moon Mames
Moon Mames - avatar
+ 1
close the table tag and put the table after opening the body tag
31st Jul 2016, 9:14 AM
Musharraf Abdullah
Musharraf Abdullah - avatar
+ 1
gosh put it in ya Eyes!
31st Jul 2016, 3:31 PM
igboke
igboke - avatar
0
Add the img before body tag !!
31st Jul 2016, 12:59 AM
Prashant Gharti
Prashant Gharti - avatar
0
man first of all do all the working. inside the body tag secondly add. the image after closing the table tag
31st Jul 2016, 2:09 AM
Abdul Basit Masood
Abdul Basit Masood - avatar
0
Start your body tag before the paragraph instead of just before the image. That's it.
31st Jul 2016, 7:12 AM
Alex
Alex - avatar
0
beautiful
31st Jul 2016, 12:29 PM
Sebastian Zampieri ErosElena
Sebastian Zampieri ErosElena - avatar
0
<html> <head><title>Le Tableau</title></head> <body> <p>Prix pains au chocolat</p> <table border="3"> <tr> <td>August</td> <td>December</td> <td>January</td> </tr> <image scr="Yourimagelink.jpg" height="150px" width="150px" /> <tr> <td>1,56
lt;/td> <td>1,32
lt;/td> <td>1.60
lt;/td> </tr> </body> </html>
2nd Aug 2016, 1:27 PM
Waleed Ali Asif
Waleed Ali Asif - avatar