Skip to content

Latest commit

 

History

History

13-image-with-text

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
tutorial

13 Image with Text

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:

demo

📝 Instructions:

  1. Create a <table> with attribute border = "0".
<table border="X"></table>
  1. Add the <tr> row with 2 <td> columns inside.
<table border="X">
    <tr>
        <td></td>
        <td></td>
    </tr>
</table>
  1. The first column (<td>) with the attribute width="25%", should contain an image with the attribute width="100%".

    Use this image: "../../.learn/assets/13-images-with-text.jpg"

<td width="X"><img width="X" src="The given image url"/></td>
  1. The second column (<td>), contains the paragraph along with the valign = "top" attribute (this is used to move the text to the top of the cell).
<td valign="X">Here goes the text</td>

💡 Hint: