-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuy_sell_cruft.html
33 lines (31 loc) · 1.02 KB
/
buy_sell_cruft.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Buy Sell</title>
</head>
<body>
<p>
<div style="display:inline-block" id="buy_button">buy</div>
<div style="display:inline-block" id="sell_button">sell</div>
<p>
<p>
<div style="display:inline-block">Cost:</div>
<div style="display:inline-block" id="cost"> </div>
</p>
<p>
<div style="display:inline-block">Cash:</div>
<div style="display:inline-block" id="cash"> </div>
</p>
<p>
<div style="display:inline-block">Capacity:</div>
<div style="display:inline-block" id="capacity"> </div>
</p>
<p>
<div style="display:inline-block" id="dec_button">(-)</div>
<div style="display:inline-block" id="amount"> </div>
<div style="display:inline-block" id="inc_button">(+)</div>
</p>
</body>
<script src="buy_sell.js"></script>
</html>