drawDB/index.html

35 lines
1.5 KiB
HTML
Raw Normal View History

2023-09-19 20:46:33 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
2024-01-29 16:01:54 +08:00
<link rel="icon" href="src/assets/favicon.ico" />
2023-09-19 20:46:33 +08:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
2024-02-27 18:39:29 +08:00
content="Online database entity-realtionship diagram editor and SQL generator. Design, visualize, and export scripts without an account and completely free of charge."
2023-09-19 20:46:33 +08:00
/>
2024-02-28 21:35:21 +08:00
<meta property="og:type" content="website" />
<meta property="og:url" content="https://drawdb.vercel.app/" />
<meta property="og:title" content="drawDB | Online database diagram editor and SQL generator" />
<meta property="og:description" content="Online database entity-realtionship diagram editor and SQL generator. Design, visualize, and export scripts without an account and completely free of charge." />
<meta property="og:image" content="/hero_ss.png" />
2024-01-29 16:01:54 +08:00
<link rel="apple-touch-icon" href="src/assets/favicon.ico" />
2024-02-27 18:39:29 +08:00
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css"
crossorigin="anonymous"
/>
<title>drawDB | Online database diagram editor and SQL generator</title>
2023-09-19 20:46:33 +08:00
</head>
2023-09-19 20:51:08 +08:00
<body theme-mode="light">
2023-09-19 20:46:33 +08:00
<noscript>You need to enable JavaScript to run this app.</noscript>
2024-02-29 04:54:43 +08:00
<div id="root"></div>
2023-12-16 11:39:13 +08:00
<script type="module" src="/src/main.jsx"></script>
2024-02-27 18:39:29 +08:00
<script
src="https://kit.fontawesome.com/e35edcd75e.js"
crossorigin="anonymous"
></script>
2023-09-19 20:46:33 +08:00
</body>
</html>