-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (23 loc) · 811 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
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>PUNCH_CARDS | The Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="fonts.css" rel="stylesheet" />
<link href="reset.css" rel="stylesheet" />
<link href="style.css" rel="stylesheet" />
</head>
<body>
<div id="root"></div>
<script src="https://unpkg.com/[email protected]/dist/peerjs.min.js"></script>
<script src="https://unpkg.com/[email protected]/qrcode.min.js"></script>
<script>
import("./app.js").then((module) => {
const application = new module.default(document.getElementById('root'))
application.start()
})
</script>
</body>
</html>