-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
281 lines (232 loc) · 11.3 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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- FONT: PUBLIC SANS (300, 400, 500) -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;500&display=swap"
/>
<link rel="stylesheet" href="styles/css/main.css" />
<script defer src="scripts/index.js"></script>
<title>Easybank Landing Page</title>
</head>
<body>
<header class="header container flex justify--between">
<div class="overlay hide-desktop"></div>
<a href="#">
<img src="img/logo.svg" alt="Easybank logo" />
</a>
<nav class="header__nav hide-mobile">
<ul class="nav-list flex">
<li><a href="#" class="nav-item">Home</a></li>
<li><a href="#" class="nav-item">About</a></li>
<li><a href="#" class="nav-item">Contact</a></li>
<li><a href="#" class="nav-item">Blog</a></li>
<li><a href="#" class="nav-item">Careers</a></li>
<li><a href="#" class="nav-item btn">Request Invite</a></li>
</ul>
</nav>
<div class="header__menu flex flex--col hide-desktop">
<a href="#" class="nav-item">Home</a>
<a href="#" class="nav-item">About</a>
<a href="#" class="nav-item">Contact</a>
<a href="#" class="nav-item">Blog</a>
<a href="#" class="nav-item">Careers</a>
</div>
<div class="header__menu-icons hide-desktop">
<!-- prettier-ignore -->
<svg id="icon-hamburger" xmlns="http://www.w3.org/2000/svg" width="24" height="11">
<g fill="#2D314D" fill-rule="evenodd">
<path d="M0 0h24v1H0zM0 5h24v1H0zM0 10h24v1H0z" />
</g>
</svg>
<!-- prettier-ignore -->
<svg id="icon-close" xmlns="http://www.w3.org/2000/svg" width="18" height="19">
<g fill="#2D314D" fill-rule="evenodd">
<path d="M.868.661l16.97 16.97-.706.708L.162 1.369z" />
<path d="M.161 17.632L17.131.662l.708.706-16.97 16.97z" />
</g>
</svg>
</div>
</header>
<section class="hero">
<div class="container grid cols--2">
<div class="hero--text">
<h1 class="heading-primary">Next generation digital banking</h1>
<p class="hero-description">
Take your financial life online. Your Easybank account will be a
one-stop-shop for spending, saving, budgeting, investing, and much
more.
</p>
<a href="#" class="btn">Request Invite</a>
</div>
<div class="hero--img"></div>
</div>
</section>
<section class="features">
<div class="container">
<header class="features--header">
<h2 class="heading-secondary">Why choose Easybank?</h2>
<p class="features--header-description">
We leverage Open Banking to turn your bank account into your
financial hub.<br />Control your finances like never before.
</p>
</header>
<div class="grid cols--4">
<div class="feature">
<img
src="img/icon-online.svg"
alt="Online Banking"
class="feature--img"
/>
<p class="feature--title">Online Banking</p>
<p class="feature--description">
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="img/icon-budgeting.svg"
alt="Simple Budgeting"
class="feature--img"
/>
<p class="feature--title">Simple Budgeting</p>
<p class="feature--description">
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="img/icon-onboarding.svg"
alt="Fast Onboarding"
class="feature--img"
/>
<p class="feature--title">Fast Onboarding</p>
<p class="feature--description">
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="img/icon-api.svg" alt="Open API" class="feature--img" />
<p class="feature--title">Open API</p>
<p class="feature--description">
Manage your savings, investments, pension, and much more from
one account. Tracking your money has never been easier.
</p>
</div>
</div>
</div>
</section>
<section class="articles">
<div class="container">
<h2 class="heading-secondary">Latest Articles</h2>
<div class="grid cols--4">
<a href="#" class="article">
<img
src="img/image-currency.jpg"
alt="Currency"
class="article--img"
/>
<div class="article--content">
<p class="article--author">By Claire Robinson</p>
<p class="article--title">
Receive money in any currency with no fees
</p>
<p class="article--description">
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>
</div>
</a>
<a href="#" class="article">
<img
src="img/image-restaurant.jpg"
alt="Restaurant"
class="article--img"
/>
<div class="article--content">
<p class="article--author">By Wilson Hutton</p>
<p class="article--title">
Treat yourself without worrying about money
</p>
<p class="article--description">
Our simple budgeting feature allows you to separate out
your spending and set realistic limits each month. That
means you …
</p>
</div>
</a>
<a href="#" class="article">
<img src="img/image-plane.jpg" alt="Plane" class="article--img" />
<div class="article--content">
<p class="article--author">By Wilson Hutton</p>
<p class="article--title">
Take your Easybank card wherever you go
</p>
<p class="article--description">
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>
</div>
</a>
<a href="#" class="article">
<img
src="img/image-confetti.jpg"
alt="Confetti"
class="article--img"
/>
<div class="article--content">
<p class="article--author">By Claire Robinson</p>
<p class="article--title">
Our invite-only Beta accounts are now live!
</p>
<p class="article--description">
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>
</div>
</a>
</div>
</div>
</section>
<footer class="footer">
<div class="container flex footer--container">
<div class="col--1">
<img src="img/logo.svg" alt="Easybank Logo" class="footer--logo" />
<div class="social-icons">
<a href="#"><img src="img/icon-facebook.svg" alt="Facebook" /></a>
<a href="#"><img src="img/icon-youtube.svg" alt="Youtube" /></a>
<a href="#"><img src="img/icon-twitter.svg" alt="Twitter" /></a>
<a href="#"
><img src="img/icon-pinterest.svg" alt="Pinterest"
/></a>
<a href="#"
><img src="img/icon-instagram.svg" alt="Instagram"
/></a>
</div>
</div>
<div class="col--2">
<a href="#" class="footer--link">About Us</a>
<a href="#" class="footer--link">Contact</a>
<a href="#" class="footer--link">Blog</a>
<a href="#" class="footer--link">Careers</a>
<a href="#" class="footer--link">Support</a>
<a href="#" class="footer--link">Privacy Policy</a>
</div>
<div class="col--3">
<a href="#" class="btn">Request Invite</a>
<p class="copyright">© Easybank. All Rights Reserved</p>
</div>
</div>
</footer>
</body>
</html>