-
HTML question.
Im not sure if this should be in this forum or on this site even but here it goes. im making myslef a BMX site. and i want on the first page to have links on the left and a pic on the right of it like this
link |pic here"""""""""""""""""""|
link | |
link | |
link | |
"""""""""""""""""""""""""""""
but all i can seem to get is this using a table or anything else i try
|pic here"""""""""""""""""""|
| |
link link link link | |
| |
"""""""""""""""""""""""""""""
and with all this going on my mind is boggled. any help is appreciated thx.
-
make it dirty: create everything in one image and use a image mapper to make it look like you did some html.
I think GIMP has the ability to do something like that, I remeber using it when making a webpage for my teacher..
-
Code:
link |pic here"""""""""""""""""""|
link | |
link | |
link | |
"""""""""""""""""""""""""""""
|pic here"""""""""""""""""""|
| |
link link link link | |
| |
"""""""""""""""""""""""""""""
blah on the formating
i hope with this one you can understand what im trying to do thx
-
im nto really looking to make it all in one image. thx for the ideathough
-
-
Code:
<html>
<head>
<title>blah blah blah</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta name="GENERATOR" content="Quanta Plus">
</head>
<body bgcolor="#232961" text="gray" link="darkGreen" alink="darkBlue" vlink="darkRed">
<div align="center"><font color="#630000" size=+4>blah blah blah</font></div>
<hr size="2" color="yellow">
<div align="left">
<div align="center">BLah blah blah blah</div>
<table>
<tr>
<td>blah2</td>
<td>blah</td>
<td>[img]images/Troy.jpg[/img]</td>
</tr>
</table>
</body>
</html>
thats basicly it.
-
OK, so what went wrong with that?
-
the links to the left apear like this
link link
i want them like this
link
link
and they need to be on the left of the picture
-
You have forgotten you <tr> tags after the specific links...do like this..
Code:
<table>
<tr>
<td>myfirstlink</td>
<td>[img]images/Troy.jpg[/img]<tr>
<td>mysecondlink</td>
<td>[img]images/Troy.jpg[/img]</td><tr>
</tr>
</table>
Then your htmlpge will look like this...
link img
link img
With tablerow means that you want to begin on a new row.
-
What kind of HTML is that, andutt? This is how it looks:
Code:
<table>
<tr>
<td>1st link</td>
<td>[img]images/Troy.jpg[/img]</td>
</tr><tr>
<td>2nd link</td>
<td>[img]images/Troy.jpg[/img]</td>
</tr>
</table>
You had left out the /tr tags.