-
Notifications
You must be signed in to change notification settings - Fork 26
/
index.html
45 lines (45 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, viewport-fit=cover"
/>
<meta name="theme-color" content="#000080" />
<meta
name="description"
content="Open-Source, Web Components-based remake of MS Paint using modern web capabilities."
/>
<meta name="twitter:title" content="Paint" />
<meta
name="twitter:description"
content="Open-Source, Web Components-based remake of MS Paint using modern web capabilities."
/>
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:image"
content="https://repository-images.githubusercontent.com/275839676/9be17780-11f0-11eb-8fc6-6fd4cf48f556"
/>
<meta name="twitter:creator" content="@christianliebel" />
<meta property="og:title" content="Paint" />
<meta
property="og:image"
content="https://repository-images.githubusercontent.com/275839676/9be17780-11f0-11eb-8fc6-6fd4cf48f556"
/>
<meta
property="og:description"
content="Open-Source, Web Components-based remake of MS Paint using modern web capabilities."
/>
<title>Paint</title>
<link rel="stylesheet" href="src/styles.css" />
<link rel="manifest" href="manifest.webmanifest" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="apple-touch-icon" href="assets/apple-touch-icon.png" />
</head>
<body>
<paint-app></paint-app>
<noscript>You need to enable JavaScript to run this app.</noscript>
<script type="module" src="src/index.ts"></script>
</body>
</html>