-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbudget.html
More file actions
80 lines (72 loc) · 2.46 KB
/
budget.html
File metadata and controls
80 lines (72 loc) · 2.46 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="active.css">
<style>
* {
box-sizing: border-box;
}
/* Create two equal columns that floats next to each other */
.column {
float: left;
width: 50%;
padding: 10px;
height: 300px; /* Should be removed. Only for demonstration */
}
/* Clear floats after the columns */
.row:after {
content: “”;
display: table;
clear: both;
}
</style>
</head>
<body>
<nav id="navbar">
<ul>
<a class="nav-link" href="index.html"><li>Home</li></a>
<a class ="nav-link" href="stocks.html"><li>Stocks</li></a>
<a class ="nav-link" href="budget.html"><li>Budget</li></a>
<a class ="nav-link" href="finterms.html"><li>Fin Terms</li></a>
<a class ="nav-link" href="tips.html"><li>Tips</li></a>
</ul>
</nav>
<body id ="budget">
<h2 id ="budget-title">BUDGET</h2>
<div id= "table-section">
<table>
<caption> Credit vs. Debit</caption>
<tr>
<th></th>
<th>Credit</th>
<th>Debit</th>
</tr>
<tr>
<td>Cost?</td>
<td>
<p>Interest charges are assessed if you don't pay off your balance at the end of each month.
</p>
<p>Many credit cards assess an annual fee.</p>
<td><p>No interest is charged because you use your own funds.</p>
<p>No annual fees, usually no transaction fees.</p></td>
</td>
</tr>
<tr>
<td>Spending limit?</td>
<td><p>Spending is limited by the amount of credit limit. Spending limits determined by the credit card company.</p> </td>
<td>Only spend the amount that's in a bank account.</td>
</tr>
<tr>
<td> Helps my credit score?</td>
<td><p>Yes, it can, if you pay on time, and don't carry a high balance.</p>
</td>
<td> <p>Debit card activity <u>does not</u> impact credit score. </p></td>
</tr>
</table>
</div>
</body>
</html>