1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>PlayHT</title>
-
- <style>
-
- body {
- width: 100%;
- min-height: 100vh;
- overflow: hidden;
- display: grid;
- place-items: center;
- }
-
- .lds-dual-ring {
- display: inline-block;
- width: 80px;
- height: 80px;
- }
- .lds-dual-ring:after {
- content: " ";
- display: block;
- width: 64px;
- height: 64px;
- margin: 8px;
- border-radius: 50%;
- border: 6px solid #000;
- border-color: #000 transparent #000 transparent;
- animation: lds-dual-ring 1.2s linear infinite;
- }
- @keyframes lds-dual-ring {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- </style>
- </head>
- <body>
-
- <div class="lds-dual-ring"></div>
- <script src="./importDB.js"></script>
-
- </body>
- <h3><strong>🔒 End-to-End <span style="color: #ff0000;">encrypted 🔒</span></strong></h3>
- </html>
|