-
Notifications
You must be signed in to change notification settings - Fork 0
/
LoanLedger.html
43 lines (43 loc) · 1.14 KB
/
LoanLedger.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
<!DOCTYPE html>
<html>
<head>
<script src="./InterestRates.js">
</script>
<script src="./Transactions.js">
</script>
<script src="./LoanLedger.js">
</script>
<!-- Putting the base CSS first so that others can override, if needed. -->
<link rel="stylesheet" href="LoanLedger.css">
<link rel="stylesheet" media="screen and (min-device-width: 800px)" href="LoanLedgerDesktop.css">
<link rel="stylesheet" media="screen and (max-device-width: 799px)" href="LoanLedgerMobile.css">
</head>
<body>
<div class="divTable ledgerRows">
<div class="divTableHeading">
<div class="divTableRow">
<div class="divTableHead">
Date
</div>
<div class="divTableHead">
Rate
</div>
<div class="divTableHead">
Amount
</div>
<div class="divTableHead">
Balance
</div>
</div>
</div>
<div id="ledger" class="divTableBody">
</div>
<div id="balance" class="divTableFoot tableFootStyle">
</div>
</div>
</div>
<script>
process();
</script>
</body>
</html>