Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="de">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Bilder einbinden</title>
  6. </head>
  7. <body>
  8. <!--
  9. Bilder werden über das img-TAG eingebunden
  10. das img-TAG ist eine leeres Tag, es hat kein End-TAG
  11. die Attribute src="" und alt="" sind Pflichtattribute
  12. -->
  13.  
  14. <h1 title="dies ist eine Überschrift">Bilder einbinden</h1>
  15. <img src="image/katze.jpg" alt="Katze mit Mütze" width="320" height="240">
  16. <!--
  17. Platzhalterbilder über die Internetseite lorempixel.com
  18. <img src="http://baconmockup.com/320/320/" alt="Platzhalterbild"> -->
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement