index.html 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <!doctype html>
  2. <html lang="de-ch">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. <meta name="theme-color" content="#000000">
  7. <!--
  8. manifest.json provides metadata used when your web app is added to the
  9. homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
  10. -->
  11. <link rel="manifest" href="%PUBLIC_URL%/manifest.json">
  12. <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
  13. <!--
  14. Notice the use of %PUBLIC_URL% in the tags above.
  15. It will be replaced with the URL of the `public` folder during the build.
  16. Only files inside the `public` folder can be referenced from the HTML.
  17. Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
  18. work correctly both with client-side routing and a non-root public URL.
  19. Learn how to configure a non-root public URL by running `npm run build`.
  20. -->
  21. <title>SZTM Excel</title>
  22. </head>
  23. <body>
  24. <!--
  25. <header>
  26. <nav>
  27. <a href="players/">Spieler</a> |
  28. <a href="draws/">Tableaux</a> |
  29. <a href="calendar/">Spielplan</a> |
  30. <a href="sms/">SMS</a> |
  31. <a href="email/">E-Mail</a>
  32. </nav>
  33. </header>
  34. <aside>
  35. <h4>Epcot Center</h4>
  36. <p>The Epcot Center is a theme park in Disney World, Florida.</p>
  37. </aside>
  38. <section>
  39. <h1>WWF</h1>
  40. <p>The world wide fund for nature (WWF) is...</p>
  41. </section>
  42. <main>
  43. <article>
  44. <h1>What does WWF do</h1>
  45. <p>WWF's mission is to stop the degradation of our planet's natural environment,
  46. and build a future in which humans live in harmony with nature.</p>
  47. <figure>
  48. <img src="pic_mountain.jpg" alt="The Pulpit Rock" width="304" height="228">
  49. <figcaption>Fig1. - The Pulpit Rock, Norway.</figcaption>
  50. </figure>
  51. </article>
  52. <article>
  53. <header>
  54. <h1>What Does WWF Do?</h1>
  55. <p>WWF's mission:</p>
  56. </header>
  57. <p>WWF's mission is to stop the degradation of our planet's natural environment,
  58. and build a future in <mark>which humans</mark> live in harmony with nature.</p>
  59. <details>
  60. <summary>Click this...</summary>
  61. ...to show or hide.
  62. <time datetime="2008-02-14 20:00">Valentines day</time>
  63. </details>
  64. <footer>
  65. <p>Posted by: Hege Refsnes</p>
  66. <p>Contact information: <a href="mailto:someone@example.com">
  67. someone@example.com</a>.</p>
  68. </footer>
  69. </article>
  70. </main>
  71. <footer></footer>
  72. -->
  73. <noscript>
  74. You need to enable JavaScript to run this app.
  75. </noscript>
  76. <div id="root"></div>
  77. <!--
  78. This HTML file is a template.
  79. If you open it directly in the browser, you will see an empty page.
  80. You can add webfonts, meta tags, or analytics to this file.
  81. The build step will place the bundled scripts into the <body> tag.
  82. To begin the development, run `npm start` or `yarn start`.
  83. To create a production bundle, use `npm run build` or `yarn build`.
  84. -->
  85. </body>
  86. </html>