Advertisement
Guest User

Untitled

a guest
Mar 26th, 2020
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="description" content="DOM">
  6. <link rel="stylesheet" href="style.css">
  7. <title>DOM</title>
  8. </head>
  9. <body>
  10. <picture>
  11. <source srcset="dom1.png" media="(min-width: 960px)">
  12. <source srcset="dom2.png" media="(min-width: 620px)(max-width:960px)">
  13. <source srcset="dom3.png" media="(max-width: 620px)">
  14. <img src="dom.png" alt="zdjecie domu">
  15. </picture>
  16. <br>
  17. <video controls autoplay loop>
  18. <source src="video.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
  19. </video>
  20. <br>
  21. <audio controls>
  22. <source src="sound.mp3" type='audio/mpeg'>
  23. </audio>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement