-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.09 KB
/
index.html
File metadata and controls
29 lines (29 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Code for gaming</title>
<link rel="stylesheet" href="./styles/fscreen.css" />
</head>
<body>
<div class="stage" id="stage">
<img class="img" src="./images/ratio_16x9.png" alt="ratio_16x9.png" />
<div class="btn" id="minMaxBtn"></div>
</div>
<!-- ****||||||| Scripts ||||||**** -->
<script src="./src/fullScreen.js"></script>
<script src="./src/code.js"></script>
<script src="./src/rooms.js"></script>
<script src="./src/storage.js"></script>
<script src="./src/promises.js"></script>
<!-- Note: Use this screenfull -->
<!-- <script
src="https://cdnjs.cloudflare.com/ajax/libs/screenfull.js/5.1.0/screenfull.min.js"
integrity="sha512-SGPHIoS+NsP1NUL5RohNpDs44JlF36tXLN6H3Cw+EUyenEc5zPXWqfw9D+xmvR00QYUYewQIJQ6P5yH82Vw6Fg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script> -->
</body>
</html>