-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestimator-results.html
More file actions
150 lines (135 loc) · 4.8 KB
/
Copy pathestimator-results.html
File metadata and controls
150 lines (135 loc) · 4.8 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1.0;" />
<title>Financial Aid Estimator</title>
<link href="http://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css">
<link href="style/main.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<div id="root">
<h1>Financial Aid Estimator</h1>
<h2>University Name</h2>
<p>
The Financial Aid Estimator provides an estimated Financial Aid Award Letter for prospective students.
The estimated values produced by this tool are not the actual amounts
that will be offered in your final Financial Aid Award Letter. All estimated values are <strong>subject to the
availability of funding</strong>. To begin the actual Financial Aid application process, complete a
<a href="http://www.fafsa.ed.gov/">FAFSA</a>.
</p>
<div class="results-wrapper">
<h3>Expected Family Contribution</h3>
<ul class="results">
<li>
<span class="result-label">
Student Contribution
<span class="description">Amount that you are expected to contribute towards the cost of your education</span>
</span>
<span class="result-amount">$99,999.00</span>
</li>
<li>
<span class="result-label">
Parent Contribution
<span class="description">Amount that your parents are expected to contribute towards the cost of your education</span>
</span>
<span class="plus-operator">+</span><span class="result-amount">$99,999.00</span>
</li>
<li class="total">
<span class="result-label">
Expected Family Contribution
<span class="description">Sum of the Student Contribution (SC) and Parent Contribution (PC)</span>
</span>
<span class="result-amount">$99,999.00</span>
</li>
</ul>
<h3>Estimated Award Letter</h3>
<ul class="results">
<li>
<span class="result-label">
Grant Award
<span class="description">Estimated total amount of grants that you will be offered in your Financial Aid Award Letter</span>
</span>
<span class="result-amount">$99,999.00</span>
</li>
<li>
<span class="result-label">
Self Help Award
<span class="description">Estimated total amount of student loans and Work-Study you will be offered in your Financial Aid Award Letter</span>
</span>
<span class="result-amount">$99,999.00</span>
</li>
<li>
<span class="result-label">
Family Help Award
<span class="description">Estimated total amount of parent loans and private loan eligiblity you will be offered in your Financial Aid Award Letter</span>
</span>
<span class="result-amount">$99,999.00</span>
</li>
</ul>
<h3>Estimated Total Price of Attendance</h3>
<ul class="results">
<li>
<span class="result-label">
Tuition and Fees
<span class="description">Includes cost of education, university health care, and miscellaneous university fees</span>
</span>
<span class="result-amount">$99,999.00</span>
</li>
<li>
<span class="result-label">
Room and Board
<span class="description">Includes rent, food, and utilities</span>
</span>
<span class="plus-operator">+</span>
<span class="result-amount">$99,999.00</span>
</li>
<li>
<span class="result-label">
Books and Supplies
<span class="description">Includes books and supplies</span>
</span>
<span class="plus-operator">+</span>
<span class="result-amount">$99,999.00</span>
</li>
<li>
<span class="result-label">
Other Expenses
<span class="description">Includes transportation and miscellaneous personal expenses</span>
</span>
<span class="plus-operator">+</span>
<span class="result-amount">$99,999.00</span>
</li>
<li class="total">
<span class="result-label">
Total Cost of Attendance
<span class="description">The total cost of attendance</span>
</span>
<span class="result-amount">$99,999.00</span>
</li>
<li>
<span class="result-label">
Grant Award
<span class="description">Total estimated Grant Award</span>
</span>
<span class="minus-operator">-</span>
<span class="result-amount">$99,999.00</span>
</li>
<li class="total">
<span class="result-label">
Estimated Net Cost
<span class="description">The total cost of attendance that you must contribute towards your education through either loans or out-of-pocket expense</span>
</span>
<span class="result-amount">$99,999.00</span>
</li>
</ul>
<p id="cohort-notice">
<strong>XX%</strong> of first-year full-time dependent, undergraduate students received grant aid in 20XX-20YY
</p>
<span class="button-wrapper">
<a href="estimator-form.html" class="button">« Return to Calculator</a>
</span>
</div>
</div>
</body>
</html>