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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>Notizen</title>
  7. <link rel="icon" href="img/faviconNotiz.ico">
  8. <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
  9. <link rel="stylesheet" href="css/mobile.css">
  10. </head>
  11. <body>
  12. <nav class="navbar navbar-expand-lg navbar-light bg-light">
  13. <div class="container">
  14. <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarMenu">
  15. <span class="navbar-toggler-icon"></span>
  16. </button>
  17. <div class="collapse navbar-collapse" id="navbarMenu">
  18. <ul class="navbar-nav">
  19. <li><a class="nav-link active" href="index.html">Neue Notiz eintragen</a></li>
  20. <li><a class="nav-link" href="Eintrag/eintraege.html">Notizen lesen</a></li>
  21. </ul>
  22. </div>
  23. </div>
  24. </nav>
  25. <div class="container">
  26. <h1 class="title">Notizen</h1>
  27. <h2>
  28. Willkommen!
  29. <small>Meine Notizen mobil verfügbar</small>
  30. </h2>
  31. <form>
  32. <div class="form-group">
  33. <label for="NotizInputKey">Thema für neue Notiz</label>
  34. <input type="NotizInputKey" class="form-control" id="key" placeholder="Thema">
  35. </div>
  36. <div class="form-group shadow-textarea">
  37. <label for="data">Neue Notiz</label>
  38. <textarea class="form-control z-depth-1" id="data" rows="3" placeholder="Schreibe etwas..."></textarea>
  39. </div>
  40. <button type="submit" class="btn btn-light" id="Speichern">Neue Notiz speichern</button>
  41. </form>
  42. <script src="scripts/notizen.js"></script>
  43. <img src="einkaufswagen.jpg">
  44. <script src="lib/es6-shim.min.js"></script>
  45. <script src="lib/jquery-2.2.4.min.js"></script>
  46. <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
  47. <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
  48. <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
  49. </div>
  50. </body>
  51. </html>