offline-export.html 1000 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1" />
  7. <title>You are offline</title>
  8. <style>
  9. html {
  10. background-color: #000000;
  11. color: #ffffff;
  12. }
  13. body {
  14. font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  15. margin: 2rem;
  16. }
  17. p {
  18. margin-block: 1rem;
  19. }
  20. button {
  21. display: block;
  22. padding: 1rem 2rem;
  23. margin: 3rem auto 0;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <h1>You are offline</h1>
  29. <p>This application requires an Internet connection to run for the first time.</p>
  30. <p>Press the button below to try reloading:</p>
  31. <button type="button">Reload</button>
  32. <script>
  33. document.querySelector("button").addEventListener("click", () => {
  34. window.location.reload();
  35. });
  36. </script>
  37. </body>
  38. </html>