Copy SVG code from Illustrator into your HTML document. Save & preview in browsers.
Below is a crude example of a responsive SVG image map. Copy code into a new, blank document to test.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Responsive SVG Image Map</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.container {
width: 70%;
margin: 0 auto
}
#myMap {
position: relative;
width: 100%;
padding-bottom: 77%;
vertical-align: middle;
margin: 0;
overflow: hidden;
}
#myMap svg {
display: inline-block;
position: absolute;
top: 0;
left: 0;
}
</style>
</head>
<body>
<div class="container">
<h3>Responsive SVG Image Map</h3>
<figure id="myMap">
<svg version="1.1" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink" viewBox="0 0 1200 808" preserveAspectRatio="xMinYMin meet">
<!--bitmap background image-->
<image width="1200" height="800" xlink:href="https://dummyimage.com/1200x800.jpg"> </image>
<!--outbound link-->
<a xlink:href="https://google.com">
<!--vector shape-->
<rect x="50" y="28" fill="#ff0" opacity="0.5" width="300" height="750"/>
</a>
<!--2nd outbound link-->
<a xlink:href="https://example.com">
<!--vector shape-->
<rect x="440" y="28" fill="#f00" opacity="0.5" width="300" height="750"/>
</a>
<!--3rd outbound link-->
<a xlink:href="https://yahoo.com">
<!--vector shape-->
<rect x="825" y="28" fill="#0ff" opacity="0.5" width="300" height="750"/>
</a>
</svg>
</figure>
</div>
</body>
</html>