-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (37 loc) · 1.44 KB
/
index.html
File metadata and controls
39 lines (37 loc) · 1.44 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
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<script src="lib/p5.js"></script>
<script src="lib/p5.sound.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8" />
<title>Internship at Goldmans - Long term stock investing paper trading game</title>
<meta name="description" content="Practice long term stock investing with anonymized real data from the 1980s with this free game.">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2JM2VDTKQG"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-2JM2VDTKQG');
</script>
</head>
<body>
<div id="sketch-holder" style="width: 100%; height: auto;">
<!-- p5.js will append its canvas or other elements here -->
</div>
<main>
</main>
<script src="src/barChart.js"></script>
<script src="src/lineChart.js"></script>
<script src="src/eventScene.js"></script>
<script src="src/tableRender.js"></script>
<script src="src/tradeEngine.js"></script>
<script src="src/timelineScene.js"></script>
<script src="src/decisionScene.js"></script>
<script src="src/narrativeScene.js"></script>
<script src="src/introScene.js"></script>
<script src="src/endingScene.js"></script>
<script src="src/mainSketch.js"></script>
</body>
</html>