forked from IceCreamYou/UnStockMe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
training_2.html
80 lines (80 loc) · 3.14 KB
/
training_2.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>UnStock Me</title>
<meta name="keywords" content="stock,market,game,trade" />
<meta name="description" content="Learn how to trade on the stock market with a simple game." />
<!--<link rel="shortcut icon" href="icon.png" type="image/x-icon" />-->
<link type="text/css" rel="stylesheet" media="all" href="styles.css" />
<script type="text/javascript" src="jquery-1.7.1.js"></script>
<script type="text/javascript" src="jquery.cookie.js"></script>
<script type="text/javascript" src="main.js"></script>
</head>
<body>
<div id="header">
<!--<img src="logo.png" alt="UnStock Me" />-->
<h1>UnStock Me</h1>
<p class="description">A stock trading game</p>
</div>
<div id="main">
<div id="content">
<div id="left-column">
<noscript>You must have JavaScript enabled to play this game.</noscript>
<p class="note">This is information about the outcome of the previous decision.</p>
<p class="info">
You found a note on Grandpa's dresser saying that LOVE is undervalued by $3.
You can sell some BEER to buy LOVE.
What do you want to do?
</p>
</div>
<div id="right-column">
<table id="stocks">
<tbody>
<tr>
<td class="stock">BEER</td><td class="value">10</td>
</tr>
<tr>
<td class="stock">LOVE</td><td class="value">12</td>
</tr>
<tr>
<td class="stock cash">Cash</td><td class="value">0</td>
</tr>
</tbody>
</table>
<div id="terms">
<p><span class="term">IPO</span> <span class="definition">Initial Public Offering</span></p>
<p><span class="term">IPO</span> <span class="definition">Initial Public Offering</span></p>
<p><span class="term">IPO</span> <span class="definition">Initial Public Offering</span></p>
</div>
</div>
<div style="clear: both;"></div>
</div><!-- /content -->
<div id="controlWrapper">
<form id="controls" action="index.html">
<label>Amount
<input type="text" id="amount" maxlength="11" size="11" name="amount" />
</label>
<label>Stock
<select id="stock" name="stock">
<option value="BEER" selected="selected">BEER</option>
</select>
</label>
<div id="actions">
<input type="submit" id="buy" name="buy" value="Buy" />
<input type="submit" id="sell" name="sell" value="Sell" />
</div>
</form><!-- /controls -->
<div style="clear: both;"></div>
</div>
<form id="continue" action="index.html">
<input type="submit" id="next" name="next" value="Continue »" />
<div style="clear: both;"></div>
</form><!-- /continue -->
</div><!-- /main -->
<div id="footer">
<p>This game was built by <a href="http://www.isaacsukin.com/">Isaac Sukin</a>,
Casey Rosengren, and Ashu Goel.</p>
</div>
</body>
</html>