비전공자 개발일기

HTML IMG 본문

HTML _CSS

HTML IMG

HiroDaegu 2021. 8. 22. 10:35
728x90
SMALL

<!DOCTYPE html>
<html>
<body>

<h2>Image Maps</h2>
<p>Click on the computer, the phone, or the cup of coffee to go to a new page and read more about the topic:</p>

<img src="workplace.jpg" alt="Workplace" usemap="#workmap" width="400" height="379">

<map name="workmap">
  <area shape="rect" coords="34,44,270,350" alt="Computer" href="computer.htm">
  <area shape="rect" coords="290,172,333,250" alt="Phone" href="phone.htm">
  <area shape="circle" coords="337,300,44" alt="Cup of coffee" href="coffee.htm">
</map>

<picture>
  <source media="(min-width:650px)" srcset="img_pink_flowers.jpg">
  <source media="(min-width:465px)" srcset="img_white_flower.jpg">
  <img src="img_orange_flowers.jpg" alt="Flowers" style="width:auto;">
</picture>

</body>
</html>

<map name=""></map>

이미지 맵을 정의, 이미지 맵은 클릭 가능한 영역이 있는 이미지

 

<area alt="" shape="" coords="" href=""...>

이미지 맵 내부의 영역을 정의

 

<picture></picture>

반응형 디자인의 아트 디렉션

 

 

728x90
LIST

'HTML _CSS' 카테고리의 다른 글

HTML EMMET  (0) 2021.08.24
HTML BLOCK & INLINE  (0) 2021.08.23
HTML EVENT  (0) 2021.08.20
HTML  (0) 2021.08.19
HTML  (0) 2021.08.16