-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (27 loc) · 1.2 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
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<meta name='description' content='A Digital Etch A Sketch'>
<meta name='keywords' content='etch a sketch, drawing'>
<meta name='author' content='Eldar Pashazade'>
<meta name='theme-color' content='#faf9f6'>
<meta property='og:type' content='website'>
<meta property='og:title' content='Etch A Sketch'>
<meta property='og:description' content='A Digital Etch A Sketch'>
<meta property='og:url' content='https://eldarlrd.github.io/etch-a-sketch'>
<meta property='og:image'
content='https://repository-images.githubusercontent.com/610183082/07ef5800-6e6b-4cc4-9594-698d5c85413b'>
<meta property='og:image:type' content='image/png'>
<meta property='og:image:width' content='1280'>
<meta property='og:image:height' content='640'>
<link rel='manifest' type='application/manifest+json' href='site.webmanifest'>
<link rel='icon' type='image/png' sizes='512x512' href='favicon.png'>
<title>Etch A Sketch</title>
</head>
<body>
<div id='app'></div>
<script type='module' src='src/main.tsx'></script>
</body>
</html>