index.html 1015 B

1234567891011121314151617181920212223242526272829303132
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="icon" type="image/png" href="./favicon-96x96.png" sizes="96x96" />
  6. <link rel="icon" type="image/svg+xml" href="./favicon.svg" />
  7. <link rel="shortcut icon" href="./favicon.ico" />
  8. <link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png" />
  9. <link rel="manifest" href="./site.webmanifest" />
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  11. <title>GUEST EXPERIENCE COMMAND CENTRE</title>
  12. </head>
  13. <style>
  14. body {
  15. background: #082653;
  16. }
  17. </style>
  18. <body>
  19. <!-- 定义circle渐变色 -->
  20. <svg>
  21. <defs>
  22. <linearGradient id="circleGradient" x1="0%" y1="0%" x2="100%" y2="100%">
  23. <stop offset="0%" stop-color="#0496FF" />
  24. <stop offset="100%" stop-color="#00DBFF" />
  25. </linearGradient>
  26. </defs>
  27. </svg>
  28. <div id="app"></div>
  29. <script type="module" src="/src/main.ts"></script>
  30. </body>
  31. </html>