Help html code...

liunx

Guest
Hi I am trying to lay out html tags that will allow me to place images. Each image will have text beneath it. It will be set up in alphabetical order. Eventually the image will be linked to another page. My problem is.... If I use a table and I want to add a new image I will have to re-do the entire table each time I add the new image. What I have below is the best set up for adding a new image later on. All I have to do is add the new line and change where my <br> tags are. The problem with the set up below is I can't add text below the image that will remain centered below the image. I have just started learning html 4.0 so if this sounds like a newbie question thats why :) Thanks for any help.<br />
<br />
<center><br />
<br><img scr=X height=75 weidth=75 border=2><font color=333300 size=3><br />
<img scr=X height=75 weidth=75 border=2><font color=333300 size=3><br />
<img scr=X height=75 weidth=75 border=2><font color=333300 size=3><br />
<img scr=X height=75 weidth=75 border=2><font color=333300 size=3><br />
<img scr=X height=75 weidth=75 border=2><font color=333300 size=3><br />
<img scr=X height=75 weidth=75 border=2><font color=333300 size=3><br />
<img scr=X height=75 weidth=75 border=2><font color=333300 size=3><br />
<img scr=X height=75 weidth=75 border=2><font color=333300 size=3><br />
<br />
<br><img scr=X height=75 weidth=75 border=2><font color=333300 size=3><br />
<img scr=X height=75 weidth=75 border=2><font color=333300 size=3><br />
<img scr=X height=75 weidth=75 border=2><font color=333300 size=3><br />
<img scr=X height=75 weidth=75 border=2><font color=333300 size=3><br />
<img scr=X height=75 weidth=75 border=2><font color=333300 size=3><br />
<img scr=X height=75 weidth=75 border=2><font color=333300 size=3><br />
<img scr=X height=75 weidth=75 border=2><font color=333300 size=3><br />
<img scr=X height=75 weidth=75 border=2><font color=333300 size=3><br />
</center><!--content-->If you really want to get the text and images nicely lined up then you have no choice but to use tables, which for you means shifting the images around a lot.<br />
<br />
If you have a very high number of images then there is a way to use databases and ASP to do it for you but that is getting quite advanced and is a bit beyond me at the moment I'm afraid!<!--content-->goldi has the right idea. I would use some form of serverside language (asp, php, cgi) to make it load form a database and do it dynamically and in any order you want.<br />
<br />
other than that you will have to use table like you said.<!--content-->:mad: Thanks... I was afraid of that. I am just learning html tags so I don't have a clue how to use a data base loading system. But thanks... ;)<!--content-->
 
Back
Top