NewbulusMaximus
Programmer
What's the best way the go about fixing an image on a screen so that it stays visible without scrolling for all kinds of screen resolutions? also, if I were to create a map on the screen for the image, how could I include it? If I can't, what are the alternatives? Here's what I got so far, but can't include the map if I fix the width and height of the image by percentage... THNX
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>name</title>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="image.jpg" align="absmiddle" width="100%" height="100%" >
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>name</title>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="image.jpg" align="absmiddle" width="100%" height="100%" >
</body>
</html>