본문 바로가기

HTML/HTML 기초

[HTML] <map>태그를 이용해서 링크로 이동하기

map은 이미지 상에서 특정 부분을 지정해 태그로 사용할 수 있다.

<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>이미지 맵 사용하기</title>
</head>
<body>
    <img src="../images/event.jpg" alt="신간안내" usemap="#eventMap">
    <map name="eventMap">
        <area shape="circle" coords="331, 238, 55" href="http://www.yes24.com/Product/Goods/70960600" alt="서적 소개 페이지로 가기" target="_blank">
        <area shape="rect" coords="41, 770, 691, 1170" href="http://www.yes24.com/EventWorld/Main.aspx" alt="이벤트 페이지로 가기" target="_blank">
    </map>
</body>
</html>

이렇게 코딩하면 1번과 2번에 링크범위가 지정된다.

728x90
반응형