-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (35 loc) · 1.11 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
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<title>Codename: Tombstone</title>
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.1/normalize.min.css">
<link rel="stylesheet" type="text/css" href="assets/style.css">
</head>
<body>
<dl>
<dt>Price:</dt>
<dd>$<span class="draggable" id="price">30,000</span></dd>
<dt>Down Payment:</dt>
<dd>$<span class="draggable" id="down">2,000</span></dd>
<dt>Interest Rate:</dt>
<dd><span class="draggable" id="rate" data-decimals="true">5.00</span>%</dd>
<dt>Length:</dt>
<dd><span class="draggable" id="duration">5</span>
<label class="select">
<select>
<option value="years">years</option>
<option value="months">months</option>
</select>
</label>
</dd>
<dt>Payment:</dt>
<dd>$<span id="payment"></span></dd>
<dt>Total Paid:</dt>
<dd>$<span id="total"></span></dd>
</dl>
<script src="bower_components/scrubbing.js/dist/Scrubbing.min.js"></script>
<script src="bower_components/countUp.js/countUp.min.js"></script>
<script src="bower_components/numeral/min/numeral.min.js"></script>
<script src="assets/app.js"></script>
</body>
</html>