-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
187 lines (161 loc) · 7.66 KB
/
index.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="">
<!-- Reset css default style -->
<link rel="stylesheet" href="css/reset-style.css">
<!-- CSS Main File -->
<link rel="stylesheet" href="css/index.css">
<title>Easybank</title>
</head>
<body>
<nav class="container navbar">
<a class="logo">
<img src="assets/images/logo.svg" alt="logo">
</a>
<div class="nav-menu">
<ul class="nav-list">
<li class="nav-item"><a class="nav-links" href="#">home</a></li>
<li class="nav-item"><a class="nav-links" href="#">about</a></li>
<li class="nav-item"><a class="nav-links" href="#">contact</a></li>
<li class="nav-item"><a class="nav-links" href="#">blog</a></li>
<li class="nav-item"><a class="nav-links" href="#">careers</a></li>
</ul>
</div>
<a class="nav-toggler">
<img id="imgId" src="assets/images/icon-hamburger.svg" alt="hamburger">
</a>
<button type="button" aria-label="request button">Request invite</button>
</nav>
<!-- ======================== Header =========================== -->
<header>
<section class="intro">
<figure class="mockup">
<img src="assets/images/image-mockups.png" alt="easybank mockup">
</figure>
<div class="title">
<h1>Next generation digital banking</h1>
<p>
Take your financial life online. Your Easybank account will be a one-stop-shop for spending, saving, budgeting, investing, and much more
</p>
<button type="button" aria-label="request button">Request invite</button>
</div>
</section>
</header>
<!-- ========================= Main ============================ -->
<main>
<section class="feature-section container">
<h2>Why choose Easybank</h2>
<p>
We leverage Open Banking to turn your bank account into your financial hub. Control your finances like never before.
</p>
<div class="features">
<div class="feature">
<img src="assets/images/icon-online.svg" alt="online banking">
<h3>Online Banking</h3>
<p>
Our modern web and mobile applications allow you to keep track of your finances wherever you are in the world.
</p>
</div>
<div class="feature">
<img src="assets/images/icon-budgeting.svg" alt="budgeting">
<h3>Simple Budgeting</h3>
<p>
See exactly where your money goes each month. Receive notifications when you’re close to hitting your limits.
</p>
</div>
<div class="feature">
<img src="assets/images/icon-onboarding.svg" alt="onboarding">
<h3>Fast Onboarding</h3>
<p>
Fast Onboarding We don’t do branches. Open your account in minutes online and start taking control of your finances right away.
</p>
</div>
<div class="feature">
<img src="assets/images/icon-api.svg" alt="api">
<h3>Open API</h3>
<p>
Manage your savings, investments, pension, and much more from one account. Tracking your money has never been easier.
</p>
</div>
</div>
</section>
<section class="blog-section container">
<h2>Latest Article</h2>
<article class="blogs">
<div class="blog">
<figure><img src="assets/images/image-currency.jpg" alt="currency"></figure>
<blockquote>
<figcaption>By Claire Robinson</figcaption>
<h3>Receive money in any currency with no fees</h3>
<p>The world is getting smaller and we’re becoming more mobile. So why should you be forced to only receive money in a single</p>
</blockquote>
</div>
<div class="blog">
<figure><img src="assets/images/image-restaurant.jpg" alt="restaurant"></figure>
<blockquote>
<figcaption>By Wilson Hutton</figcaption>
<h3>Treat yourself without worrying about money</h3>
<p>Our simple budgeting feature allows you to separate out your spending and set realistic limits each month. That means you</p>
</blockquote>
</div>
<div class="blog">
<figure><img src="assets/images/image-plane.jpg" alt="plane"></figure>
<blockquote>
<figcaption>By Wilson Hutton</figcaption>
<h3>Take your Easybank card wherever you go</h3>
<p>We want you to enjoy your travels. This is why we don’t charge any fees on purchases while you’re abroad. We’ll even show you</p>
</blockquote>
</div>
<div class="blog">
<figure><img src="assets/images/image-confetti.jpg" alt="confetti"></figure>
<blockquote>
<figcaption>By Claire Robinson</figcaption>
<h3>Our invite-only Beta accounts are now live!</h3>
<p>
After a lot of hard work by the whole team, we’re excited to launch our closed beta. It’s easy to request an invite through the site
</p>
</blockquote>
</div>
</article>
</section>
</main>
<!-- ======================== Footer =========================== -->
<footer class="footer-section container">
<div class="footer">
<div class="item-1">
<div class="logo">
<img src="assets/images/logo.svg" alt="logo icon">
</div>
<div class="socials">
<img src="assets/images/icon-facebook.svg" alt="facebook icon">
<img src="assets/images/icon-youtube.svg" alt="youtube icon">
<img src="assets/images/icon-twitter.svg" alt="twitter icon">
<img src="assets/images/icon-pinterest.svg" alt="pinterest icon">
<img src="assets/images/icon-instagram.svg" alt="instagram icon">
</div>
</div>
<div class="item-2">
<ul class="footer-list">
<li><a href="#">about us</a></li>
<li><a href="#">contact</a></li>
<li><a href="#">blog</a></li>
<li><a href="#">careers</a></li>
<li><a href="#">support</a></li>
<li><a href="#">privacy policy</a></li>
</ul>
</div>
<div class="item-3">
<button type="button">Request</button>
<div class="copyright">
<p>Easybank. All Rights Reserved</p>
</div>
</div>
</div>
</footer>
<script src="js/script.js"></script>
</body>
</html>