<!-- 이미지 맵에 사용할 실제 이미지 -->
<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="example.jpg" alt="example" usemap="#example-map"> <!-- usemap 속성으로 <map> 태그를 연결 -->    
<map name="example-map"> <!-- name 속성으로 이미지 맵에 이름을 지정 -->
    ...
</map>