tutorial |
---|
Before CSS
existed, using tables was the only way possible to do some website layouts. It is a very similar process to creating layouts on MS Office.
Now, let's recreate an example similar to this:
- Create a
<table>
with attributeborder = "0"
.
<table border="X"></table>
- Add the
<tr>
row with 2<td>
columns inside.
<table border="X">
<tr>
<td></td>
<td></td>
</tr>
</table>
-
The first column (
<td>
) with the attributewidth="25%"
, should contain an image with the attributewidth="100%"
.Use this image:
"../../.learn/assets/13-images-with-text.jpg"
<td width="X"><img width="X" src="The given image url"/></td>
- The second column (
<td>
), contains the paragraph along with thevalign = "top"
attribute (this is used to move the text to the top of the cell).
<td valign="X">Here goes the text</td>
- You can choose your fake text on this page: http://www.lipsum.com/