Need a bit of help with HTML and CSS for my computer project

I have to make a website for my school and I have to use basic html and css only
I have decided to make a two rows of images and place one row at left side and another row at right side of the page and write the content between the both lines of images
the problem is that I want the right side image line to be on the same height as the left one is and want to write the content between the two lines of images..
(I am sorry as this is my first post I am not able to post any images..)
 

Attachments

  • Gyan Ganga International School - Google Chrome.jpg
    Gyan Ganga International School - Google Chrome.jpg
    45.1 KB · Views: 8
you need CSS Float which will have absolute x,y offsets and the Y values are identical

suggest a < div name> and apply a float for Y
then a < p ,,> < / p > for each 'zone' (eg left center right) with unique X

the 'center zone' can be filled statically or with DHTML / Javascript dome.xxx.write()

DO NOT USE TABLES (that's what the exercise is all about :) )
 
This code might help it makes 1 horizontal table with 3 different rows. If you want to learn more I suggest you to search Html table on Google it will help you a lot also their are so many tutorial available.

<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
<td>row 1, cell 3</td>
</tr>
</table>
 
LOL; the exercise is for CSS (the modern) which is designed to replace TABLES (the ancient technique)
 
Back