index.html 801 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Policies and Terms | webretro</title>
  6. <style>
  7. body {
  8. color: white;
  9. background-color: #101010;
  10. font-family: sans-serif;
  11. text-align: center;
  12. }
  13. a {
  14. color: #3ec3f0;
  15. }
  16. a:not(a[href^="mailto:"]) {
  17. font-size: 24px;
  18. display: block;
  19. margin: 10px;
  20. }
  21. h2 {
  22. margin-top: 100px;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <h1>Policies and Terms | webretro</h1>
  28. <a href="privacy.html">Privacy Policy</a>
  29. <a href="tos.html">Terms and Conditions</a>
  30. <a href="cookiepolicy.html">Cookie Policy</a>
  31. <h2>Contact Me</h2>
  32. <p>Discord: OlyB#9420 (preferred method)</p>
  33. <p>E-mail: <a href="mailto:olyb@titaniumnetwork.org" target="_blank">olyb@titaniumnetwork.org</a></p>
  34. </body>
  35. </html>