coursework

sausagecake

Baseband Member
Messages
95
This will probably sound really stupid to anyone experienced with HTML, but I need to ask the following question for my coursework:
If I want to put some text on the same line as a picture, how would I do that? Say if I wanted a picture on the left and writing on the right, would it be
<img src='PICTURE.jpg' align=center border="5"><h3 style = color:yellow;'>TEXT</h3>
(all on the same line)? Or is it more complicated?
 
if you did that you would get the picture and one line of the text next to it, best way is to use a table:

<table border="1" width="100%" bordercolor="#FFFFFF" bordercolorlight="#FFFFFF" bordercolordark="#FFFFFF">
<tr>
<td width="50%"><img border="0" src="PICTUTE URL HERE"td>
<td width="50%">The picture on the right is BLAH BLAH ****ING BLAH.....
You're bored aren't you? I can tell your bored! Lazy ****!</td>
</tr>
</table>
 
Back
Top Bottom