본문 바로가기
웹프로그래밍/HTML5

[HTML5] picture

by 폴더맨 2024. 6. 9.
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>

<h1>The picture element</h1>

<p>Resize the browser window to load different images.</p>

<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>

'웹프로그래밍 > HTML5' 카테고리의 다른 글

[HTML5] 타이틀 이미지 넣기  (0) 2024.06.09
[HTML5] 애러캐치  (0) 2024.06.09
[HTML5] output  (0) 2024.06.09
[HTML5] position z-index  (0) 2024.06.09
[HTML5] font-variant  (0) 2024.06.09