index.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <html>
  2. <head>
  3. <title>Hello Zoraxy</title>
  4. <style>
  5. body {
  6. font-family: Tahoma, sans-serif;
  7. background-color: #f6f6f6;
  8. color: #2d2e30;
  9. }
  10. .sectionHeader{
  11. background-color: #c4d0d9;
  12. padding: 0.1em;
  13. }
  14. .sectionHeader h3{
  15. text-align: center;
  16. }
  17. .container{
  18. margin: 4em;
  19. margin-left: 10em;
  20. margin-right: 10em;
  21. background-color: #fefefe;
  22. }
  23. @media (max-width:960px) {
  24. .container{
  25. margin-left: 1em;
  26. margin-right: 1em;
  27. }
  28. .sectionHeader{
  29. padding-left: 1em;
  30. padding-right: 1em;
  31. }
  32. }
  33. .textcontainer{
  34. padding: 1em;
  35. }
  36. </style>
  37. </head>
  38. <body>
  39. <div class="container">
  40. <div class="sectionHeader">
  41. <h3>Welcome to Zoraxy Static Web Server!</h3>
  42. </div>
  43. <div class="textcontainer">
  44. <p>If you see this page, that means your static web server is running.<br>
  45. By default, all the html files are stored under <code>./web/html/</code>
  46. relative to the zoraxy runtime directory.<br>
  47. You can upload your html files to your web directory via the <b>Web Directory Manager</b>.
  48. </p>
  49. <p>
  50. For online documentation, please refer to <a href="//zoraxy.aroz.org">zoraxy.aroz.org</a> or the <a href="https://github.com/tobychui/zoraxy/wiki">project wiki</a>.<br>
  51. Thank you for using Zoraxy!
  52. </p>
  53. </div>
  54. </div>
  55. </body>
  56. </html>