-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
111 lines (111 loc) · 3.36 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="manifest" href="site.webmanifest" />
<meta name="msapplication-TileColor" content="#0E0E10" />
<meta name="theme-color" content="#18181B" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://sqlite3.online/" />
<title>SQLite Viewer</title>
<!-- Favicon and icons -->
<link rel="icon" href="./icons/favicon.ico" type="image/x-icon" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="./icons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./icons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./icons/favicon-16x16.png"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="./icons/android-chrome-192x192.png"
/>
<link
rel="icon"
type="image/png"
sizes="512x512"
href="./icons/android-chrome-512x512.png"
/>
<!-- Meta Data -->
<meta
name="description"
content="View and query SQLite databases in the browser"
/>
<meta
name="keywords"
content="SQLite, Database, Viewer, Browser, Web App, SQL, Database Management, SQLite Browser, SQLite Online, SQLite Query, Web Database, Online Database Viewer, Data Analysis, SQLite Editor, SQLite Management"
/>
<meta property="og:title" content="SQLite Viewer" />
<meta property="og:site_name" content="SQLite Viewer" />
<meta property="og:locale" content="en_US" />
<meta
property="og:description"
content="View and query SQLite databases in the browser"
/>
<meta property="og:image" content="https://sqlite3.online/preview.png" />
<meta property="og:url" content="https://sqlite3.online/" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="SQLite Viewer" />
<meta
name="twitter:description"
content="View and query SQLite databases in the browser"
/>
<meta name="twitter:image" content="https://sqlite3.online/preview.png" />
<meta name="author" content="vwh" />
<!-- Fonts -->
<link
rel="preload"
href="https://fonts.googleapis.com/css2?family=Lexend:[email protected]&display=swap"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<noscript
><link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Lexend:[email protected]&display=swap"
/></noscript>
<!-- Critical CSS -->
<style>
body {
font-family: "Lexend", sans-serif;
font-display: swap;
}
.no-js {
text-align: center;
margin-top: 20%;
}
.no-js h1 {
font-size: 2rem;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx" defer></script>
<noscript>
<div class="no-js">
<h1>JavaScript Required</h1>
<p>
We're sorry, but this application requires JavaScript to function
correctly. Please enable JavaScript in your browser and reload the
page.
</p>
</div>
</noscript>
</body>
</html>