index.html 3.1 KB

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