index.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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="AgMee3sqSZkE0QaZP8f/F9OJj5iSLdnNMRGttIDlOQy552MI4GoL41jyCAHOYsQ8UWM1kPdrb6PVmbSllX/JqwEAAABZeyJvcmlnaW4iOiJodHRwczovL2V4Y2FsaWRyYXcuY29tOjQ0MyIsImZlYXR1cmUiOiJOYXRpdmVGaWxlU3lzdGVtMiIsImV4cGlyeSI6MTU5MDU3MzM5MX0="
  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
  59. rel="preload"
  60. href="FG_Virgil.woff2"
  61. as="font"
  62. type="font/woff2"
  63. crossorigin="anonymous"
  64. />
  65. <link
  66. rel="preload"
  67. href="Cascadia.woff2"
  68. as="font"
  69. type="font/woff2"
  70. crossorigin="anonymous"
  71. />
  72. <link
  73. href="https://excalidraw-socket.herokuapp.com/socket.io"
  74. rel="preconnect"
  75. crossorigin="anonymous"
  76. />
  77. <link
  78. rel="manifest"
  79. href="manifest.json"
  80. style="--pwacompat-splash-font: 24px Virgil;"
  81. />
  82. <style>
  83. .LoadingMessage {
  84. position: fixed;
  85. top: 0;
  86. right: 0;
  87. bottom: 0;
  88. left: 0;
  89. z-index: 999;
  90. display: flex;
  91. align-items: center;
  92. justify-content: center;
  93. pointer-events: none;
  94. }
  95. .LoadingMessage span {
  96. background-color: rgba(255, 255, 255, 0.8);
  97. border-radius: 5px;
  98. padding: 0.8em 1.2em;
  99. font-size: 1.3em;
  100. }
  101. .visually-hidden {
  102. position: absolute !important;
  103. height: 1px;
  104. width: 1px;
  105. overflow: hidden;
  106. clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  107. clip: rect(1px, 1px, 1px, 1px);
  108. white-space: nowrap; /* added line */
  109. }
  110. </style>
  111. <script
  112. async
  113. src="https://www.googletagmanager.com/gtag/js?id=UA-387204-13"
  114. ></script>
  115. <script>
  116. window.dataLayer = window.dataLayer || [];
  117. function gtag() {
  118. dataLayer.push(arguments);
  119. }
  120. gtag("js", new Date());
  121. gtag("config", "UA-387204-13");
  122. </script>
  123. </head>
  124. <body>
  125. <noscript>
  126. You need to enable JavaScript to run this app.
  127. </noscript>
  128. <header>
  129. <h1 class="visually-hidden">Excalidraw</h1>
  130. </header>
  131. <div id="root">
  132. <div class="LoadingMessage">
  133. <span>Loading scene...</span>
  134. </div>
  135. </div>
  136. </body>
  137. </html>