-이미지에 맵을 만들어 이동할 수 있는 기능
<img src="이미지 파일명" alt="대체 텍스트" usemap="#맵이름" />
<map id="맵이름" name="맵이름">
<area shape="맵모양" coords="맵좌표" href="링크걸 주소" alt="대체텍스트" target="창열기"/>
</map>
<area shape="rect" coords="좌측상단 꼭짓점 x,y 좌표값과 우측하단 x, y 좌표값" href="url" alt="대체텍스트" />
<area shape="circle" coords="원 중심점 x,y 좌표값과 원의 반지름" href="url" alt="대체텍스트" />
<area shape="poly" coords="각 꼭짓점의 x,y 좌표값" href="url" alt="대체텍스트" />
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>이미지 탭 태그</title>
</head>
<body>
<p>map 속성 이용</p>
<img
usemap="#lion"
src="https://post-phinf.pstatic.net/MjAxNzA2MjhfMjE3/MDAxNDk4NjU2NDMxNjE3.GVDQtxu0Uy0rdQKP8tafmhjIEhvNXZ6kbS46tBYgj88g.iMCg7rWGeNJA6wX_SkZcN1h77NN_g3urQtuOkuSMU4Yg.JPEG/1488534056254.jpg?type=w1200"
alt="라이언" />
<map name="lion">
<area
shape="circle"
coords="135,335,219"
href="https://velog.io/@smiletmf"
alt="벨로그 이동"
target="_blank">
</map>
</body>
</html>
이미지 출처
https://m.post.naver.com/viewer/postView.naver?volumeNo=8363826&memberNo=6876741