index.html 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Excalidraw</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="apple-mobile-web-app-capable" content="yes" />
  11. <meta name="theme-color" content="#000000" />
  12. <!-- prettier-ignore -->
  13. <meta
  14. http-equiv="origin-trial"
  15. content="AvB+3K1LqGdVR+XcHhjpdM0yl5/RtR/v7MIO/nbgNnLZHJ5yMYos9kZAQiuc0EEZne4d9CzHhF2sk2fUPOylcgUAAABceyJvcmlnaW4iOiJodHRwczovL3d3dy5leGNhbGlkcmF3LmNvbTo0NDMiLCJmZWF0dXJlIjoiTmF0aXZlRmlsZVN5c3RlbSIsImV4cGlyeSI6MTU4Mjg3ODU4NH0="
  16. />
  17. <!-- General tags -->
  18. <meta
  19. name="description"
  20. content="Excalidraw is a whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them."
  21. />
  22. <meta name="image" content="%PUBLIC_URL%/og-image.png" />
  23. <!-- OpenGraph tags -->
  24. <meta property="og:url" content="https://excalidraw.com" />
  25. <meta property="og:site_name" content="Excalidraw" />
  26. <meta property="og:type" content="website" />
  27. <meta property="og:title" content="Excalidraw" />
  28. <meta
  29. property="og:description"
  30. content="Excalidraw is a whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them."
  31. />
  32. <meta
  33. property="og:image"
  34. name="twitter:image"
  35. content="%PUBLIC_URL%/og-image.png"
  36. />
  37. <meta property="og:image:width" content="1280" />
  38. <meta property="og:image:height" content="669" />
  39. <!-- Twitter Card tags -->
  40. <meta name="twitter:card" content="summary_large_image" />
  41. <meta name="twitter:title" content="Excalidraw" />
  42. <meta
  43. name="twitter:description"
  44. content="Excalidraw is a whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them."
  45. />
  46. <meta name="twitter:image" content="%PUBLIC_URL%/og-image.png" />
  47. <link
  48. rel="shortcut icon"
  49. href="%PUBLIC_URL%/favicon.ico"
  50. type="image/x-icon"
  51. />
  52. <link rel="stylesheet" href="%PUBLIC_URL%/fonts.css" />
  53. <link
  54. rel="preload"
  55. href="%PUBLIC_URL%/FG_Virgil.ttf"
  56. as="font"
  57. type="font/ttf"
  58. crossorigin="anonymous"
  59. />
  60. <link
  61. rel="preload"
  62. href="%PUBLIC_URL%/Cascadia.ttf"
  63. as="font"
  64. type="font/ttf"
  65. crossorigin="anonymous"
  66. />
  67. <script
  68. async
  69. src="https://www.googletagmanager.com/gtag/js?id=UA-387204-13"
  70. ></script>
  71. <script>
  72. window.dataLayer = window.dataLayer || [];
  73. function gtag() {
  74. dataLayer.push(arguments);
  75. }
  76. gtag("js", new Date());
  77. gtag("config", "UA-387204-13");
  78. </script>
  79. </head>
  80. <body>
  81. <noscript>
  82. You need to enable JavaScript to run this app.
  83. </noscript>
  84. <header>
  85. <h1 class="visually-hidden">Excalidraw</h1>
  86. </header>
  87. <div id="root"></div>
  88. <aside>
  89. <!-- https://github.com/tholman/github-corners -->
  90. <svg
  91. xmlns="http://www.w3.org/2000/svg"
  92. width="40"
  93. height="40"
  94. viewBox="0 0 250 250"
  95. style="position: absolute; top: 0; right: 0"
  96. >
  97. <a
  98. href="https://github.com/excalidraw/excalidraw"
  99. target="_blank"
  100. aria-label="GitHub repository"
  101. >
  102. <path d="M0 0l115 115h15l12 27 108 108V0z" fill="#6c6c6c" />
  103. <path
  104. class="octo-arm"
  105. d="M128 109c-15-9-9-19-9-19 3-7 2-11 2-11-1-7 3-2 3-2 4 5 2 11 2 11-3 10 5 15 9 16"
  106. style="transform-origin: 130px 106px"
  107. fill="#fff"
  108. />
  109. <path
  110. class="octo-body"
  111. d="M115 115s4 2 5 0l14-14c3-2 6-3 8-3-8-11-15-24 2-41 5-5 10-7 16-7 1-2 3-7 12-11 0 0 5 3 7 16 4 2 8 5 12 9s7 8 9 12c14 3 17 7 17 7-4 8-9 11-11 11 0 6-2 11-7 16-16 16-30 10-41 2 0 3-1 7-5 11l-12 11c-1 1 1 5 1 5z"
  112. fill="#fff"
  113. />
  114. </a>
  115. </svg>
  116. </aside>
  117. </body>
  118. </html>