-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (28 loc) · 1.38 KB
/
index.html
File metadata and controls
32 lines (28 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description"
content="Explore creative drawing with Canvas, a basic JavaScript app to sketch and draw on an HTML5 canvas." />
<meta name="keywords"
content="JavaScript canvas, drawing app, sketching tool, HTML5 canvas, simple drawing application" />
<meta property="og:title" content="Canvas" />
<meta property="og:description"
content="Explore creative drawing with Canvas, a basic JavaScript app to sketch and draw on an HTML5 canvas." />
<meta property="og:image" content="https://coderespite.com/image/js-projects/canvas.png" />
<meta property="og:url" content="https://coderespite.com/projects/js-projects/canvas" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Canvas" />
<meta name="twitter:description"
content="Explore creative drawing with Canvas, a basic JavaScript app to sketch and draw on an HTML5 canvas." />
<meta name="twitter:image" content="https://coderespite.com/image/js-projects/canvas.png" />
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <link rel="stylesheet" href="styles.css"> -->
<title>Canvas</title>
</head>
<body>
<canvas></canvas>
<script src="script.js"></script>
</body>
</html>