-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (29 loc) · 1.4 KB
/
index.html
File metadata and controls
34 lines (29 loc) · 1.4 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
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/bootstrap-5.3.3-dist/css/bootstrap.min.css" rel="stylesheet">
<title>PacPong</title>
<!-- Bootstrap library -->
<!-- (보안) SRI(Subresource Integrity)
integrity : 파일이 예상치 않은 조작 없이 전달되었는지 확인
crossorigin : 무결성 속성을 CORS 요청에 사용할 때 필요 -->
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous"> -->
<!-- QR code Library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js" integrity="sha384-3zSEDfvllQohrq0PHL1fOXJuC/jSOO34H46t6UQfobFOmxE5BpjjaIJY5F2/bMnU" crossorigin="anonymous"></script>
<!-- Local CSS-->
<link rel="stylesheet" href="/css/otpStyle.css">
<link rel="stylesheet" href="/css/demo.css">
<link rel="stylesheet" href="/css/spinner.css">
<link rel="stylesheet" href="/css/modal.css">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/game.css">
</head>
<body>
<script type="module" src="/router.js"></script>
<div id="app"></div>
<!-- Bootstrap JS -->
<script src="/bootstrap-5.3.3-dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>