-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (29 loc) · 1.28 KB
/
index.html
File metadata and controls
33 lines (29 loc) · 1.28 KB
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
<!DOCTYPE html>
<html lang="en" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, viewport-fit=cover, user-scalable=no"
/>
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Drawing Canvas" />
<meta property="og:title" content="A simple drawing app with canvas and color picker" />
<meta
property="og:description"
content="Drawing Canvas with different functionality for touchscreen and desktop devices"
/>
<meta property="og:url" content="https://sergeiown.github.io/DrawingCanvas/" />
<meta property="og:image" content="./og.png" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta property="og:image:alt" content="Drawing Canvas App logo" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<script type="module" src="app.js"></script>
<title>Drawing canvas</title>
</head>
<body>
<div class="_container"></div>
</body>
</html>