Dieses Repository beinhaltet HTML- und Javascript Code zur einer NotizenWebApp auf Basis von Web Storage. Zudem sind Mocha/Chai Tests im Browser enthalten. https://meinenotizen.netlify.app/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 763B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Notizen</title>
  6. <link rel="icon" href="img/faviconNotiz.ico">
  7. <link rel="stylesheet" href="css/mobile.css">
  8. </head>
  9. <body>
  10. <h1>Notizen</h1>
  11. <h2>
  12. Willkommen!
  13. <small>Meine Notizen mobil verfügbar</small>
  14. </h2>
  15. <p>Einkaufsnotizen.</p>
  16. <p>Sie können sich ruhig etwas umsehen. Im Blog dokumentiere ich meine Erfahrungen beim Programmieren. Daneben können Sie auch meine Webprojekte anschauen. Viel Spass.</p>
  17. <img src="einkaufswagen.jpg" alt="Foto von mir">
  18. <p>Marco :-)</p>
  19. <script src="lib/es6-shim.min.js"></script>
  20. <script src="lib/jquery-2.2.4.min.js"></script>
  21. <script src="scripts/notizen.js"></script>
  22. </body>
  23. </html>