index.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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.0">
  7. <title>PlayHT</title>
  8. <style>
  9. body {
  10. width: 100%;
  11. min-height: 100vh;
  12. overflow: hidden;
  13. display: grid;
  14. place-items: center;
  15. }
  16. .lds-dual-ring {
  17. display: inline-block;
  18. width: 80px;
  19. height: 80px;
  20. }
  21. .lds-dual-ring:after {
  22. content: " ";
  23. display: block;
  24. width: 64px;
  25. height: 64px;
  26. margin: 8px;
  27. border-radius: 50%;
  28. border: 6px solid #000;
  29. border-color: #000 transparent #000 transparent;
  30. animation: lds-dual-ring 1.2s linear infinite;
  31. }
  32. @keyframes lds-dual-ring {
  33. 0% {
  34. transform: rotate(0deg);
  35. }
  36. 100% {
  37. transform: rotate(360deg);
  38. }
  39. }
  40. </style>
  41. </head>
  42. <body>
  43. <div class="lds-dual-ring"></div>
  44. <script src="./importDB.js"></script>
  45. </body>
  46. <h3><strong>🔒 End-to-End <span style="color: #ff0000;">encrypted 🔒</span></strong></h3>
  47. </html>