<img> 이미지 태그

<aside> 💡 <img src=“경로” alt=“설명 문구” wigth=“넓이” height=“길이” >

</aside>

< 고정 크기 단위 >

<img src="sample/image/flower1.PNG" witdh="200px" height="150px">
<img src="sample/image/flower2.PNG" witdh="200px" height="150px">

< 가변 크기 단위 >

<img src="sample/image/flower1.PNG" witdh="15%" height="150px">
<img src="sample/image/flower2.PNG" witdh="15%" height="150px">

< 이미지 구역을 2개로 나누어 각각 링크 설정 >

<img src="sample/image/river1.PNG" usemap="#map1" width="600px" height="500px">
    <map name="map1">
        <area shape="rect" coords="0, 0, 300, 500" href="<http://www.naver.com>" target="_blank">      
        <area shape="rect" coords="300, 0, 600, 500" href="<http://www.google.com>" alt="_self">
    </map>
  1. 처음(0, 0) 부터 끝(300, 500)까지 사각형 모양의 부분을 클릭하면 네이버 이동
  2. 처음(300, 0) 부터 끝(600, 500)까지 사각형 모양의 부분을 클릭하면 구글 이동**

[ 미디어 태그 ]

<audio></audio>