index.html 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Excalidraw | Hand-drawn look & feel • Collaborative • Secure</title>
  6. <meta
  7. name="viewport"
  8. content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover, shrink-to-fit=no"
  9. />
  10. <meta name="referrer" content="origin" />
  11. <meta name="mobile-web-app-capable" content="yes" />
  12. <meta name="theme-color" content="#000" />
  13. <!-- Origin Trial token for the Native File System API v2 https://developers.chrome.com/origintrials/#/view_trial/4019462667428167681 (Chrome 83–85) -->
  14. <meta
  15. http-equiv="origin-trial"
  16. content="AvfZfAVFy0dEFl79Rsh7nRqV798Nsf1ulzXRLKGeLJ+bfEUZEPxKAesEcQI3kiN++7TKvQ4uN5LJnFANVU+wKwMAAABZeyJvcmlnaW4iOiJodHRwczovL2V4Y2FsaWRyYXcuY29tOjQ0MyIsImZlYXR1cmUiOiJOYXRpdmVGaWxlU3lzdGVtMiIsImV4cGlyeSI6MTU5NzI0NTM5M30="
  17. />
  18. <!-- General tags -->
  19. <meta
  20. name="description"
  21. content="Excalidraw is a virtual collaborative whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them."
  22. />
  23. <meta name="image" content="og-image.png" />
  24. <!-- OpenGraph tags -->
  25. <meta property="og:url" content="https://excalidraw.com" />
  26. <meta property="og:site_name" content="Excalidraw" />
  27. <meta property="og:type" content="website" />
  28. <meta property="og:title" content="Excalidraw" />
  29. <meta
  30. property="og:description"
  31. content="Excalidraw is a whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them."
  32. />
  33. <!-- OG tags require an absolute url for images -->
  34. <meta
  35. property="og:image"
  36. name="twitter:image"
  37. content="https://excalidraw.com/og-image.png"
  38. />
  39. <meta
  40. property="og:image:secure_url"
  41. name="twitter:image"
  42. content="https://excalidraw.com/og-image.png"
  43. />
  44. <meta property="og:image:width" content="1280" />
  45. <meta property="og:image:height" content="669" />
  46. <meta property="og:image:alt" content="Excalidraw logo with byline." />
  47. <!-- Twitter Card tags -->
  48. <meta name="twitter:card" content="summary_large_image" />
  49. <meta name="twitter:title" content="Excalidraw" />
  50. <meta
  51. name="twitter:description"
  52. content="Excalidraw is a whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them."
  53. />
  54. <!-- OG tags require absolute url for images -->
  55. <meta name="twitter:image" content="https://excalidraw.com/og-image.png" />
  56. <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
  57. <link rel="stylesheet" href="fonts.css" type="text/css" />
  58. <link rel="stylesheet" href="app.css" type="text/css" />
  59. <link
  60. rel="preload"
  61. href="FG_Virgil.woff2"
  62. as="font"
  63. type="font/woff2"
  64. crossorigin="anonymous"
  65. />
  66. <link
  67. rel="preload"
  68. href="Cascadia.woff2"
  69. as="font"
  70. type="font/woff2"
  71. crossorigin="anonymous"
  72. />
  73. <link
  74. href="%REACT_APP_SOCKET_SERVER_URL%/socket.io"
  75. rel="preconnect"
  76. crossorigin="anonymous"
  77. />
  78. <link
  79. rel="manifest"
  80. href="manifest.json"
  81. style="--pwacompat-splash-font: 24px Virgil;"
  82. />
  83. <% if (process.env.REACT_APP_INCLUDE_GTAG === 'true') { %>
  84. <script
  85. async
  86. src="https://www.googletagmanager.com/gtag/js?id=UA-387204-13"
  87. ></script>
  88. <script>
  89. window.dataLayer = window.dataLayer || [];
  90. function gtag() {
  91. dataLayer.push(arguments);
  92. }
  93. gtag("js", new Date());
  94. gtag("config", "UA-387204-13");
  95. </script>
  96. <% } %>
  97. </head>
  98. <body>
  99. <noscript>
  100. You need to enable JavaScript to run this app.
  101. </noscript>
  102. <header>
  103. <h1 class="visually-hidden">Excalidraw</h1>
  104. </header>
  105. <div id="root">
  106. <div class="LoadingMessage">
  107. <span>Loading scene...</span>
  108. </div>
  109. </div>
  110. </body>
  111. </html>