There may be some help for you in one of these if you're using HTML:
http://www.web-source.net/html_codes_chart.htm
http://www.web-source.net/html_tips.htm
http://www.davesite.com/webstation/html/
And here's a place to try out what you've done to make sure you haven't forgotten something!
http://www.mountaindragon.com/html/try.htm
I don't know how to phrase this but I am building my own website and I want to have a link to my pictures but I want them to look like a table 2 by 2 with 4 pics in all. I know how to link to pics and etc. but I cant get them to come together like a box do you get what im trying to say?
3 answers
thank you but I have already learned from those sites its helping me but its not helping with this particular problem its kinda confusing. here's what I CAN do I have a link "Photos" click on that link and there is 1 pic there, but I want 4 boxed pics I hope that clears it up alittle. I know its tough to try and help b/c I cant even explain it right
You'll have to use a table.
The HTML would look something like this:
<Table width="75%" align="center" border="1">
<tr>
<td width="50%">
<IMG SRC="locationofimage1.jpg">
</td>
<td width="50%">
<IMG SRC="locationofimage2.jpg">
</td>
</tr><tr>
<td width="50%">
<IMG SRC="locationofimage3.jpg">
</td>
<td width="50%">
<IMG SRC="locationofimage4.jpg">
</td>
</tr>
</table>
Hope that helps!
Matt
The HTML would look something like this:
<Table width="75%" align="center" border="1">
<tr>
<td width="50%">
<IMG SRC="locationofimage1.jpg">
</td>
<td width="50%">
<IMG SRC="locationofimage2.jpg">
</td>
</tr><tr>
<td width="50%">
<IMG SRC="locationofimage3.jpg">
</td>
<td width="50%">
<IMG SRC="locationofimage4.jpg">
</td>
</tr>
</table>
Hope that helps!
Matt