Hi Guys,
Im a complete novice and as you do I decided to build a website. Now I have created 2 pages that only consist of background images that were created in Photoshop. These pages consist of nothing but a background image but I want to create on the index page (page 1) an area that when the curser is moved over it you can click on it and it takes you to the next page which is called Intro (page 2). The area I want to create this over is the grey text 'grey ouroboros' and to always align there no matter what the browswer size is.
Its driving me mad, have looked for online help but I dont know the correct terminology.
The HTML is below. It may be messy so whatever you can advise I would be extremely grateful.
My website is www.greyouroboros.co.uk
HTML as follows:
Index Page (page 1):
<HTML>
<HEAD>
<TITLE>Grey Ouroboros</TITLE>
<style>
body{margin:0px}
.bg{
position: absolute;
top:0px;
left:0px;
width:100%;
height:100%;
z-index:0;
visibility: hidden;
overflow: hidden;
}
</style>
</HEAD>
<BODY>
<p align="left"><a href="Intro.html" target="_parent"><img src="index.png" width="100%" height="175%" border="0" usemap="#Map" class="bg">
<map name="Map">
<area shape="rect" coords="298,169,766,386" href="Intro.html" target="_parent" alt="">
</map>
</a> </p>
</BODY>
</HTML>
Im a complete novice and as you do I decided to build a website. Now I have created 2 pages that only consist of background images that were created in Photoshop. These pages consist of nothing but a background image but I want to create on the index page (page 1) an area that when the curser is moved over it you can click on it and it takes you to the next page which is called Intro (page 2). The area I want to create this over is the grey text 'grey ouroboros' and to always align there no matter what the browswer size is.
Its driving me mad, have looked for online help but I dont know the correct terminology.
The HTML is below. It may be messy so whatever you can advise I would be extremely grateful.
My website is www.greyouroboros.co.uk
HTML as follows:
Index Page (page 1):
<HTML>
<HEAD>
<TITLE>Grey Ouroboros</TITLE>
<style>
body{margin:0px}
.bg{
position: absolute;
top:0px;
left:0px;
width:100%;
height:100%;
z-index:0;
visibility: hidden;
overflow: hidden;
}
</style>
</HEAD>
<BODY>
<p align="left"><a href="Intro.html" target="_parent"><img src="index.png" width="100%" height="175%" border="0" usemap="#Map" class="bg">
<map name="Map">
<area shape="rect" coords="298,169,766,386" href="Intro.html" target="_parent" alt="">
</map>
</a> </p>
</BODY>
</HTML>