I need help designing a webpage! HTML HELP!?

  • Thread starter Thread starter elz.gamer
  • Start date Start date
E

elz.gamer

Guest
How do i cover my page in an image, that, when clicked, will enlarge then disappear to revel my homepage...? Does this make sense and is it possible using html? Can anyone provide the codes? Help much appreciated. This is what i have so far. Its really basic.
<html>
<head>
<title> Title Here</title>

</head>
<style type="text/css">
body
{
background-image: url('image.bmp');
background-repeat: no-repeat;
}
</style>

<table border="0" width="100%" cellpadding="10">
<tr><td colspan="2">Logo goes here
</td>
</tr>
<tr bgcolor="#FFFF66 ">
<td width="25%" valign="top">
Links here
</tr bgcolor>
</td>

<td width="75%" valign="top" bgcolor="#ffffff">
Main text and pictures for each page here

</td>
</tr>
</table>
</body>
</html>
 
Back
Top