Coding/HTML

[html 링크 만들기] 글자에 링크 연결하기

찡콩찡 2022. 3. 14. 16:43

실행1>

<!DOCTYPE html>
<html lang="en">
<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>Document</title>
</head>
<body>
    <img src="images/kids.jpg" alt="" usemap="#favorites">
    <map name="#favorites">
        <area shape="react" coords="10,10,160,200"
        href="http://cafe.naver.com/doithtml15"
        target="_blank" alt="do it html 네이버 카페로 가기">
        <area shape="react" coords="200,10,380,200"
        href="http://www.facebook.com/do.it.html15"
        target="_blank" alt="do it html 페이스북 페이지지로 가기">
    </map>
</body>
</html>
 
 
 
결과1>