ClioSport.net

Register a free account today to become a member!
Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

  • When you purchase through links on our site, we may earn an affiliate commission. Read more here.

Html help please



  Megane 225 F1
To put things short, my web design teacher is a class A c**k and hasnt taught us anything. I have to build a website using basic HTML.

Now i have 2 images. one is to be on the left of the screen and the other on the right. Here is the code i have so far, but the right image wont go onto the right hand side of the screen :(

HELP

<head>
<title>John Leslie Gardens</title>
</head>
<body>
<img border="10" img src="left.jpg" />
<img border="10" img src="right.jpg" align = "right" />
</body>
</html>
 
try:

<head>
<title>John Leslie Gardens</title>
</head>
<body>
<img border="10" img src="left.jpg" />
<img border="10" img src="right.jpg" align="RIGHT" />
</body>
</html>
 
  Megane 225 F1
Ok now its on the right, but at the bottom of the page :S

Wish i could just use dreamweaver :(
 
WTF? Working for me in Firefox and IE.

In FF they look like this

[pic]------------------------[pic]

and in IE:

[pic]
----------------------------[pic]
 
Ok try

<head>
<title>John Leslie Gardens</title>
</head>
<body>
<table width="100%">
<tr>
<th>
<img border="10" img src="left.jpg" />
</th>
<th>
<img border="10" img src="right.jpg" />
</th>
</tr>

</table>

</html>
 
  Megane 225 F1
untitled1.jpg


Thats what it looks like
 
  1.2 Dynamique billabong
can you not just tw*t it in a table :) obviously you will need to change the pic dimensions and table width to suit what you are after

<head>
<title>John Leslie Gardens</title>
</head>

<body>
<div align="left">
<table width="1000" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="12%"><img src="left.jpg" width="120" height="44"></td>
<td width="76%"><div align="right"></div></td>
<td width="12%"><img src="right.jpg" width="120" height="44"></td>
</tr>
</table>
</div>
</body>
</html>
 


Top