<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>
[ 미디어 태그 ]
<audio></audio>