Trying to place a link on a 1920x1080 picture and keep it fixed in one spot, regardless of browser size. Any suggestions?
<!DOCTYPE html>
<link rel="stylesheet" href="../style.css" />
<html>
<head>
<title>My Website</title>
</head>
<body>
<div class="myImage">
<img
src="image.png"
alt="This is a 1920x1080 image"
usemap="#myWorkmap"
height="1080"
width="1920"
/>
</div>
</body>
<map name="myWorkmap">
<area shape="rect" coords="910, 730, 1031, 758" alt="This is a link to another HTML page" href="index2.html" />
</map>
</html>