-
Notifications
You must be signed in to change notification settings - Fork 1
/
interest.html
169 lines (136 loc) · 6.89 KB
/
interest.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
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--==================== UNICONS ====================-->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<!--==================== SWIPER CSS ====================-->
<link rel="stylesheet" href= "assets/css/swiper-bundle.min.css">
<!--==================== CSS ====================-->
<link rel="stylesheet" href="assets/css/styles.css">
<title>Tanu's Portfolio</title>
<!--===== Adding icon logo in title bar =====-->
<link rel = "icon" href = "https://tanu-n-prabhu.github.io/myWebsite.io/Img/logo_transparent.png" type = "image/x-icon">
</head>
<body>
<!--==================== HEADER ====================-->
<header class="header" id="header">
<nav class="nav container">
<a href="https://github.com/Tanu-N-Prabhu" class="nav__logo">Tanu</a>
<div class="nav__menu" id = "nav-menu">
<!---===== NAVIGATION BAR HEADER =====-->
<ul class="nav__list grid">
<li class="nav__item">
<a href="index.html#home" class="nav__link">
<i class="uil uil-estate nav__icon"></i>Home
</a>
</li>
<li class="nav__item">
<a href="index.html#about" class="nav__link">
<i class="uil uil-user nav__icon"></i>About
</a>
</li>
<li class="nav__item">
<a href="index.html#skills" class="nav__link">
<i class="uil uil-file nav__icon"></i>Skills
</a>
</li>
<li class="nav__item">
<a href="index.html#services" class="nav__link">
<i class="uil uil-briefcase-alt nav__icon"></i>Services
</a>
</li>
<li class="nav__item">
<a href="index.html#portfolio" class="nav__link">
<i class="uil uil-scenery nav__icon"></i>Projects
</a>
</li>
<li class="nav__item">
<a href="index.html#contact" class="nav__link">
<i class="uil uil-message nav__icon"></i>Contact Me
</a>
</li>
</ul>
<i class="uil uil-times nav__close" id = "nav-close"></i>
</div>
<div class="nav__btns">
<!--===== THEME CHANGE BUTTONS (DARK MODE) =====-->
<i class="uil uil-moon change-theme" id = "theme-button"></i>
<div class="nav__toggle" id = "nav-toggle">
<i class="uil uil-apps"></i>
</div>
</div>
</nav>
</header>
<!--==================== MAIN ====================-->
<main class="main">
<!--==================== ABOUT ====================-->
<section class="about section" id="about">
<h2 class="section__title">Compound Interest Calculator</h2>
<span class="section__subtitle">Long-term investing can be a great way to save for your future.</span>
<div class="skills__container container grid">
<h3>I can currently contribute: 1000</h3>
<p class="">The more you initially contribute the more your potential return could be.</p>
<h3>I can contribute every: Month</h3>
<p>Making regular contributions increases your potential for a greater return.</p>
<h3>Annual rate of return: 1.35%</h3>
<p>Annual rate of return is the increase in your investment over a year, as a proportion of your original investment.</p>
<h3>Years I want to save: 10</h3>
<p>The longer you invest, the more your savings may grow through compound returns.</p>
<br>
<br>
<img src="https://i.insider.com/5f88cd009e9fe40019009aa3?width=1000&format=jpeg&auto=webp" alt="">
<br>
<br>
<h3>Based on your contributions and assumed interest rate, your savings could grow to approximately</h3>
<br>
<br>
<img src="assets/img/intrest_td.PNG" alt="">
</div>
</div>
</section>
<!--==================== FOOTER ====================-->
<footer class="footer">
<div class="footer__bg">
<div class="footer__container container grid">
<div>
<h1 class="footer__title">Tanu</h1>
<span class="footer__subtitle">Technical Writer</span>
</div>
<ul class="footer__links">
<li>
<a href="#services" class="footer__link">Services</a>
</li>
<li>
<a href="#portfolio" class="footer__link">Portfolio</a>
</li>
<li>
<a href="#contact" class="footer__link">Contact Me</a>
</li>
</ul>
<div class="footer__socials">
<a href="" class="footer__social">
<i class="uil uil-facebook-f"></i>
</a>
<a href="" class="footer__social">
<i class="uil uil-instagram"></i>
</a>
<a href="" class="footer__social">
<i class="uil uil-twitter-alt"></i>
</a>
</div>
</div>
<p class="footer__copy">© GitHub. All right reserved.</p>
</div>
</footer>
<!--==================== SCROLL TOP ====================-->
<a href="#" class="scrollup" id="scroll-up">
<i class="uil uil-arrow-up scrollup__icon"></i>
</a>
<!--==================== SWIPER JS ====================-->
<script src="assets/js/swiper-bundle.min.js"></script>
<!--==================== MAIN JS ====================-->
<script src="assets/js/main.js"></script>
</body>
</html>