-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
45 lines (43 loc) · 1.71 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
43
44
45
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Amorrtization Calculator</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="client/css/app.css">
</head>
<body>
<div class="container">
<div class="row">
<h1>Student Loan Amortization Calculator</small></h1>
</div>
<div class="row">
<div class="col-md-9 fields-container">
<!-- Fields go in here, inserted in app.js -->
</div>
<div class="col-md-3">
<div class="instructions">
<ol>
<li>Figure out your <a href="#weighted-interest">weighted interest</a> rate</li>
<li>Enter some stuff into the <a href="#amortization">calculator</a></li>
<li>Click <strong>Calculate</strong></li>
<li><strike>Profit</strike> Be informed!</li>
</ol>
</div>
</div>
</div>
<div class="row">
<div class="col-md-9 results-container">
<!-- Table goes in here, inserted in calculator.js -->
</div>
<div class="col-md-3">
<!-- Ads -->
</div>
</div>
</div>
<!-- Scripts -->
<script src="client/scripts/app.js"></script>
</body>
</html>