-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbudget.html
More file actions
36 lines (31 loc) · 1.18 KB
/
budget.html
File metadata and controls
36 lines (31 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<title>Budgeting</title>
<link rel="stylesheet" type="text/css" href="budget-styles.css">
</head>
<body>
<div id="nav">
<h1><a href="mainPage.html">Paw Plan</a></h1>
</div>
<div id="box-container">
<h2>Budget</h2>
<div class="image-container">
<img src="pictures/balance icon.png" alt="Account Balance">
<p><a href=accountBalance.html >Balance</a></p>
</div>
<div class="image-container">
<img src="pictures/tuition icon.png" alt="Tuition and Fees Icon">
<p><a href="Tuition.html">Tuition and Fees</a></p>
</div>
<div class="image-container">
<img src="pictures/planning icon.png" alt="Financial Planning Icon">
<p><a href="financialPlanning.html">Budget</a></p>
</div>
<div class="image-container">
<img src="pictures/income icon.png" alt="Income Icon">
<p><a href="income.html" >Income</a></p>
</div>
</div>
</body>
</html>