index.html 706 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>长江行游轮 | Vista Cruises</title>
  7. <style>
  8. /* Hide scrollbar for Chrome, Safari and Opera */
  9. .no-scrollbar::-webkit-scrollbar {
  10. display: none;
  11. }
  12. /* Hide scrollbar for IE, Edge and Firefox */
  13. .no-scrollbar {
  14. -ms-overflow-style: none; /* IE and Edge */
  15. scrollbar-width: none; /* Firefox */
  16. }
  17. html {
  18. scroll-behavior: smooth;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div id="root"></div>
  24. <script type="module" src="/index.tsx"></script>
  25. </body>
  26. </html>