-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 853 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="CatCanvas is an infinite, interactive canvas built purely with web components and vanilla JavaScript, CSS, and HTML."
/>
<title>catcanvas</title>
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div id="wholepage">
<div id="functionBar">
<square-button></square-button>
<circle-button></circle-button>
<triangle-button></triangle-button>
</div>
<canvas id="canvas"></canvas>
</div>
<script type="module" src="./canvas.js"></script>
<script type="module" src="/components/index.js"></script>
</body>
</html>