-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 756 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 756 Bytes
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, shrink-to-fit=no"
/>
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>qboard</title>
<meta name="description" content="The efficient digital whiteboard." />
<script
src="https://kit.fontawesome.com/e6baef0f80.js"
crossorigin="anonymous"
async
></script>
</head>
<body>
<div class="container">
<canvas id="BaseQBoard" width="1600" height="900"></canvas>
<canvas id="QBoard" width="1600" height="900"></canvas>
</div>
<div id="Overlay"></div>
<script type="module" src="./src/index.jsx"></script>
</body>
</html>