A couple of HTML webpage questions?

Chris

New member
1) How do you put text beside text on a webpage without using the align=right or left tag?

2) How do you put text beside an image on a webpage without using the align=right or left tag?

I want the text to be directly beside what I want it to be beside. I don't want it to be beside it, but way too low, or way too high.
 
I don't think ther'es any other way to do that.
but you could use tables for example you have a table containing your image and then you create another table with the width of -2 . 7 on both tables you will have the align = left tag in it so that it knows where to be.

Though this way is kind of sort of like use the align = left sort of thing but it a little more complex and easier to manipulate in terms of where its going to be. Here's the code i use:

<table border="0" id="table" cellspacing="5" cellpadding="3">
<tr>
<td style="border: 0px solid #ffffff" width="100">
<img border="0" src="img.imgtag" width="width" height="height"></td>
<td style="border: 0px solid #ffffff" width="-2" align="left"> <font><br />
TD 2 contents, TD 1 is your image or whatever.
</font> </table>
 
Back
Top