-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
115 lines (93 loc) · 4.69 KB
/
about.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
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
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>Calculate Your Loans: About</title>
<meta name="description" content="Calculate Your Loans is a free, open-source tool to promote financial literacy.">
<meta name="author" content="Stephen Burgess">
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link href='//fonts.googleapis.com/css?family=Share:400,400italic,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/vendor.css"/>
<link rel="stylesheet" href="stylesheets/style.css">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="images/favicon.ico">
</head>
<body>
<!-- Primary Page Layout
================================================== -->
<!-- Delete everything in this .container and get started on your own site! -->
<div class="container">
<div class="sixteen columns">
<header>
<a class="header-link" href="index.html">
<h1 class="container-header">Calculate Your Loans</h1>
</a>
<h4 class="container-subheader">A <a target="_blank" href="https://webdev.ink">WebDev.Ink</a> product.</h4>
<hr />
</header>
</div>
<div id="contentCol">
<div class="two-thirds column" id="Credits" style="margin-bottom:20px;">
<h4>Calculate Your Loans</h4>
<p>Calculate Your Loans is an amortization calculator designed and development to help people understand how much having a loan will cost and the ideal salary range for different amounts of debt.</p>
<p>Please <a href="mailto:[email protected]">email me</a> at [email protected] if you have any feedback or questions about this page.</p>
<h5>Overview</h5>
<p>Student loan debt represents 6% of the national debt in the United States, and yet many people don’t understand how how much taking out a loan will cost. Since financial literacy is underemphasized in public education, I felt this topic was one from which many people, not just students, could benefit.</p>
<p><a href="https://github.com/stephenburgess8/calculateyourloans">Source Code (Github)</a></p>
<h5>Privacy Policy</h5>
<p><a href="privacypolicy.html">Privacy Policy</a></p>
<p>This site uses Google Analytics but otherwise does not collect or use any personal information.</p>
<!--
<h5>Donate</h5>
<p>Donate via <a href="https://donorbox.org/calculate-your-loans">DonorBox</a>
-->
<h4>License and Fair Use</h4>
<p>Copyright © 2017 Stephen Burgess</p>
<p>This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.</p>
<p>This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.</p>
<p>You should have received a copy of the GNU General Public License along with this program. If not, see <a href="http://www.gnu.org/licenses/" target="_blank">http://www.gnu.org/licenses/</a>
</div>
<div id="infoCol">
<div class="one-third column" id="about">
<h3>About Me</h3>
<ul>
<li>
Stephen Burgess
</li>
<li>
<a href="mailto:[email protected]?Subject=Student%20loans%20page">[email protected]</a>
</li>
<li>
Web Developer
</li>
<li>
<a href="http://webdev.ink" target="_blank">WebDev.Ink Blog</a>
</li>
<li>
<a href="http://stephenburgess.tech" target="_blank">Portfolio Website</a>
</li>
</ul>
</div>
</div>
<!-- End infoCol -->
<br class="clear" />
<footer class="border sixteen columns footer"><a href="mailto:[email protected]?Subject=Calculate Your Loans">Stephen Burgess</a> © (<a href="https://spdx.org/licenses/GPL-3.0.html">GNU-3.0</a>) 2018</footer>
</div>
</div><!-- container -->
<!-- End Document
================================================== -->
</body>
</html>