-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (33 loc) · 989 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
33
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="main.css" />
</head>
<body>
<div class="info">
<div class="row">
<div class="clock column">
<span class="key">Time: </span>
<span class="value" id="clock_value"></span>
</div>
<div class="counter column">
<span class="key">Number of stocks: </span>
<span class="value" id="counter_value"></span>
</div>
</div>
<div class="row">
<div class="last_refresh column">
<span class="key">Last refresh: </span>
<span class="value" id="last_refresh_value"></span>
</div>
<div class="refresh_interval column">
<span class="key">Refresh interval: </span>
<span class="value" id="refresh_interval"></span>
</div>
</div>
</div>
<div class="stocks" id="stocks"></div>
<script src="./stocks.js"></script>
</body>
</html>