-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcase.html
30 lines (29 loc) · 863 Bytes
/
case.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta author="Cheng Niu">
<meta author="Ye Bai">
<meta author="Kuo Chia-ying">
<link rel="icon" href="/assets/TAMU-Logo.svg">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Case Study</title>
<script src="https://code.createjs.com/1.0.0/easeljs.min.js"></script>
<script src="https://requirejs.org/docs/release/2.3.5/minified/require.js"></script>
<style>
html, body {
height: 100%;
margin: 0;
}
/* Ensure #app takes up the full screen */
#app {
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/case_study_main.js"></script>
</body>
</html>