-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (25 loc) · 1.12 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
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<title>The Art of Computing</title>
<link rel="stylesheet" type="text/css" href="navbar.css">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<canvas id="canvas_01"></canvas>
<canvas id="canvas_02"></canvas>
<div id="learning-app"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/proton-engine/6.0.3/proton.min.js" integrity="sha512-FMPSbts85MlLgQX0qop/Vc43JHosqb+ZyUT6yzMwStSKQ0a8qIaUs8kleOcpfqMxIFiXEvNOoDUbHk24UFbmlQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script type="importmap">
{
"imports": {
"vue": "https://unpkg.com/vue@3/dist/vue.esm-browser.js"
}
}
</script>
<script src="./index.js" type="module"></script>
<script src="./background-animation.js"></script>
</body>
</html>