-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
32 lines (28 loc) · 1.06 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
<!--
This is the page that every subject will see and interact with.
-->
<!doctype html>
<html>
<head>
<title>Economics Game</title>
<link rel="stylesheet" href="css/main.css" />
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript" src="./js/main.js"></script>
</head>
<body>
<div class="banner">
<div class="container">
<div class="before_info">
<div class="player_choice"></div>
<div class="payout"></div>
</div>
<div class="line_chart" style="display:none; width:100vw; height:70vh;"></div>
<div class="other_info">
<div class="current_choice"></div>
<div class="timer"></div>
</div>
<p class="welcome" style="opacity:0">Welcome to the Game.<br />Please Wait Just a Few Moments.</p>
</div>
</div>
</body>
</html>