-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (23 loc) · 1.18 KB
/
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
28
<!DOCTYPE html>
<html lang="en" class="notranslate" translate="no">
<head>
<meta name="google" content="notranslate" />
<title>Cool Fighting Game (by Repeat)</title>
</head>
<body style="background-color:black;">
<canvas id="mycanvas"></canvas>
</body>
<!-- Include the processing.js library -->
<!-- See https://khanacademy.zendesk.com/hc/en-us/articles/202260404-What-parts-of-ProcessingJS-does-Khan-Academy-support- for differences -->
<script src="https://cdn.jsdelivr.net/processing.js/1.4.8/processing.min.js"></script>
<!-- <script type="text/javascript" src="https://livejs.com/live.js"></script> <!-- copied from https://stackoverflow.com/questions/5588658/auto-reload-browser-when-i-save-changes-to-html-file-in-chrome -->
<script type="text/javascript" src="global.js"></script>
<script>
function cb(response) {
globall.views=response.value;
};
</script>
<script src="https://api.countapi.xyz/hit/cool-fighting-game-by-repeat.repeatsalt.repl.co/visits?callback=cb" async></script>
<script type="text/javascript" src="module.js"></script>
<script type="text/javascript" src="script.js"></script>
</html>