I would like to create a link in the text when you roll over the rectangle with the pointer and be able to click on "Euclidean geometry" in the popup box and be redirected to:
Here's a link to the page.
And here is the code.
I tried the usual way within the text to create links but can't seem to get it to work. Thanks for your time.
Code:
http://en.wikipedia.org/wiki/Euclidean_geometry

Here's a link to the page.
And here is the code.
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Rectangle</title>
<style type="text/css">
#map {
margin:0;
padding:0;
width:640px;
height:400px;
background:url(rectangle.png) top left no-repeat #fff;
font-family:arial, helvetica, sans-serif;
font-size:13pt;
}
#map li {
margin:0;
padding:0;
list-style:none;
}
#map li a {
position:absolute;
display:block;
/*
Specifying a background image
(a 1px by 1px transparent gif)
fixes a bug in older versions of
IE that causeses the block to not
render at its full dimensions.
*/
background:url(blank.gif);
text-decoration:none;
color:#000;
}
#map li a span { display:none; }
#map li a:hover span {
position:relative;
display:block;
width:200px;
left:20px;
top:20px;
border:1px solid #000;
background:#fff;
padding:5px;
filter:alpha(opacity=95);
opacity:0.95;
}
#map a.rectangle {
top:55px;
left:71px;
width:300px;
height:123px;
}
</style>
</head>
<body>
<ul id="map">
<li><a class="rectangle" href="#" title="Rectangle"><span><b>Rectangle</b><br>
In Euclidean geometry, a rectangle is a quadrilateral with four right angles.</span></a></li>
</ul>
</body>
</html>