“Tag HTML Gambar” Kode Jawaban

Tag gambar html

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
  </head>
  <body>
    <h2>Example</h2>
    <img src="https://i.pinimg.com/originals/c7/93/ae/c793ae372886c450d55535211231204e.jpg" alt="Nature" width="400" height="700">
  </body>
</html>
Hatim Eddinani

tag gambar dalam html

<img src="example.jpg" width="100" height="800">
Coding boy Hasya

tag img

<img src="img.img" alt="" height="" width="">
Alifesaver

Tag gambar

<picture>
  <source srcset="mdn-logo-wide.png" media="(min-width: 600px)">
  <img src="mdn-logo-narrow.png" alt="MDN">
</picture>
Ugliest Unicorn

Tag gambar

<picture>
  <source srcset="logo-768.png 768w, logo-768-1.5x.png 1.5x">
  <source srcset="logo-480.png, logo-480-2x.png 2x">
  <img src="logo-320.png" alt="logo">
</picture>
Ugliest Unicorn

Tag HTML Gambar

<!--Change the browser window width to see the image change.-->

<picture>
    <source srcset="/media/cc0-images/surfer-240-200.jpg"
            media="(min-width: 800px)">
    <img src="/media/cc0-images/painted-hand-298-332.jpg" alt="" />
</picture>
Tiny Coders

Jawaban yang mirip dengan “Tag HTML Gambar”

Pertanyaan yang mirip dengan “Tag HTML Gambar”

Lebih banyak jawaban terkait untuk “Tag HTML Gambar” di HTML

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya