+ 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,32lt;/td> <td>1.60lt;/td> </tr> <body> <image src="chocolat.jpg" height="150px" width="150px" alt="" /> </body></html>8 ответов
+ 1
Put the <body> before the <table> and put </table> after </tr>
+ 1
close the table tag and put the table after opening the body tag
+ 1
gosh put it in ya Eyes!
0
Add the img before body tag !!
0
man first of all do all the working. inside the body tag secondly add. the image after closing the table tag
0
Start your body tag before the paragraph instead of just before the image. That's it.
0
beautiful
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,56lt;/td>
<td>1,32lt;/td>
<td>1.60lt;/td>
</tr>
</body>
</html>