ClioSport.net

This is a sample guest message. 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

Car  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>
 
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>
 
untitled1.webp


Thats what it looks like
 
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>
 
Back
Top