<!-- 이미지 맵에 사용할 실제 이미지 -->
<img src="example.jpg" alt="Web infographic" usemap="#web-link-map">  <!-- usemap 속성으로 <map> 태그를 연결 -->

<!-- 이미지 맵을 정의 -->
<map name="web-link-map"> <!-- name 속성으로 이미지 맵에 이름을 지정 -->
    <!-- 세 개의 <area>로 세 개의 영역에 링크 설정하기 -->
    <area target="_blank" alt="HTML" href="/category/html/" coords="114,154,49" shape="circle">
    <area target="_blank" alt="CSS" href="/category/css/" coords="57,58,49" shape="circle">
    <area target="_blank" alt="JavaScript" href="/category/javascript/" coords="172,57,49" shape="circle">
</map>
실제 적용된 모습
<img src="image-map.png" usemap="#examplemap">
<map name="examplemap">
    <!-- 사각형 영역: 좌상단 (34,44), 우하단 (270,350) -->
    <area shape="rect" coords="34,44,270,350" href="https://example.com/rect">
    
    <!-- 원형 영역: 중심 (200,150), 반지름 50 -->
    <area shape="circle" coords="200,150,50" href="https://example.com/circle">
    
    <!-- 다각형 영역: 꼭짓점 (130,60), (180,100), (160,200) -->
    <area shape="poly" coords="130,60,180,100,160,200" href="https://example.com/poly">
</map>

caniuse.com에서 더 자세한 정보를 확인해 보세요.