index.html 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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, shrink-to-fit=no"
  9. />
  10. <meta name="theme-color" content="#000000" />
  11. <!-- General tags -->
  12. <meta
  13. name="description"
  14. content="Excalidraw is a whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them."
  15. />
  16. <meta name="image" content="https://www.excalidraw.com/og-image.png" />
  17. <!-- OpenGraph tags -->
  18. <meta property="og:url" content="https://www.excalidraw.com/" />
  19. <meta property="og:site_name" content="Excalidraw" />
  20. <meta property="og:type" content="website" />
  21. <meta property="og:title" content="Excalidraw" />
  22. <meta
  23. property="og:description"
  24. content="Excalidraw is a whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them."
  25. />
  26. <meta
  27. property="og:image"
  28. name="twitter:image"
  29. content="https://www.excalidraw.com/og-image.pngg"
  30. />
  31. <meta property="og:image:width" content="1280" />
  32. <meta property="og:image:height" content="669" />
  33. <!-- Twitter Card tags -->
  34. <meta name="twitter:card" content="summary_large_image" />
  35. <meta name="twitter:title" content="Excalidraw" />
  36. <meta
  37. name="twitter:description"
  38. content="Excalidraw is a whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them."
  39. />
  40. <meta
  41. name="twitter:image"
  42. content="https://www.excalidraw.com/og-image.png"
  43. />
  44. <link rel="icon" href="%PUBLIC_URL%/logo.png" />
  45. <link
  46. rel="preload"
  47. href="https://uploads.codesandbox.io/uploads/user/f7fdc300-3c43-44c1-9a59-4338a82a9954/xhjR-FG_Virgil.ttf"
  48. as="font"
  49. type="font/ttf"
  50. crossorigin="anonymous"
  51. />
  52. <script
  53. async
  54. src="https://www.googletagmanager.com/gtag/js?id=UA-387204-13"
  55. ></script>
  56. <script>
  57. window.dataLayer = window.dataLayer || []
  58. function gtag() {
  59. dataLayer.push(arguments)
  60. }
  61. gtag("js", new Date())
  62. gtag("config", "UA-387204-13")
  63. </script>
  64. </head>
  65. <body>
  66. <noscript>
  67. You need to enable JavaScript to run this app.
  68. </noscript>
  69. <div id="root"></div>
  70. <!-- https://github.com/tholman/github-corners -->
  71. <svg
  72. xmlns="http://www.w3.org/2000/svg"
  73. width="40"
  74. height="40"
  75. viewBox="0 0 250 250"
  76. style="position: absolute; top: 0; right: 0"
  77. >
  78. <a href="https://github.com/excalidraw/excalidraw" target="_blank">
  79. <path d="M0 0l115 115h15l12 27 108 108V0z" fill="#6c6c6c" />
  80. <path
  81. class="octo-arm"
  82. 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"
  83. style="transform-origin: 130px 106px"
  84. fill="#fff"
  85. />
  86. <path
  87. class="octo-body"
  88. 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"
  89. fill="#fff"
  90. />
  91. </a>
  92. </svg>
  93. <!--
  94. This HTML file is a template.
  95. If you open it directly in the browser, you will see an empty page.
  96. You can add webfonts, meta tags, or analytics to this file.
  97. The build step will place the bundled scripts into the <body> tag.
  98. To begin the development, run `npm start` or `yarn start`.
  99. To create a production bundle, use `npm run build` or `yarn build`.
  100. -->
  101. </body>
  102. </html>