-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
51 lines (48 loc) · 1.55 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="canonical" href="https://pkcarreno.github.io/jsod" />
<title>JSoD</title>
<meta
name="description"
content="This is an app to run and share JavaScript code from your browser. It is installable, offline and has a simple-to-use interface."
/>
<meta
name="keywords"
content="JS, JavaScript, run, quickjs, execute, online, share"
/>
<meta name="author" content="Pkcarreno" />
<meta property="og:title" content="JSoD" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://pkcarreno.github.io/jsod" />
<meta property="twitter:title" content="JSoD" />
<meta
property="twitter:description"
content="This is an app to run and share JavaScript code from your browser. It is installable, offline and has a simple-to-use interface."
/>
<link rel="apple-touch-icon" href="/icons/pwa-icon_x180.png" />
<link rel="icon" href="/icons/favicon.ico" sizes="32x32" />
<link
rel="icon"
href="/icons/favicon.svg"
sizes="any"
type="image/svg+xml"
/>
<meta
name="theme-color"
content="#fdfefb"
media="(prefers-color-scheme: light)"
/>
<meta
name="theme-color"
content="#11150a"
media="(prefers-color-scheme: dark)"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>