-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (32 loc) · 818 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Stocks</title>
<link rel="stylesheet" type="css" href="main.css">
</head>
<body>
<h1>Stock-it-to-me!</h1>
<form class="form" action="#">
<input type=text placeholder="Ticker Symbol" class="symbol">
<input type=text placeholder="Quantity" class="quantity">
<input type="submit" value="Buy" class="button">
</form>
<table>
<thead>
<tr>
<th>Name</th>
<th>Price</th>
<th>Change / %</th>
<th>Qty</th>
<th></th>
</tr>
</thead>
<tbody id='stockInfo'>
</tbody>
</table>
<div class="total"></div>
<script src="//cdn.jsdelivr.net/jquery/2.1.3/jquery.min.js"></script>
<script src="//cdn.jsdelivr.net/lodash/3.0.0/lodash.min.js"></script>
<script src="main.js"></script>
</body>
</html>