-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
239 lines (214 loc) · 8.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="images/favicon-32x32.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/general.css" />
<link rel="stylesheet" href="css/queries.css" />
<title>Easybank landing page</title>
</head>
<body>
<div class="header">
<div class="container">
<div class="head-grid">
<div class="head-logo">
<img src="images/logo.svg" alt="logo">
</div>
<nav class="main-nav">
<ul class="main-nav-list grid--5-cols">
<li><a class="main-nav-link" href="#how">Home</a></li>
<li><a class="main-nav-link" href="#meals">About</a></li>
<li>
<a class="main-nav-link" href="#testimonials">Contact</a>
</li>
<li><a class="main-nav-link" href="#pricing">Blog</a></li>
<li><a class="main-nav-link nav-cta" href="#cta">Carees</a></li>
</ul>
</nav>
<div class="btn">
<button class="button">Request Invite</button>
<img class="mobile-btn-nav" src="images/icon-hamburger.svg">
</div>
</div>
</div>
</div>
<main>
<section class="section-hero active-nav">
<div class="container relative-pos">
<div class="right-padding">
<h1>
Next generation digital banking
</h1>
<p>
Take your financial life nline. Your Easybank account will be a one-stop-shop for spending, saving, budgeting, investing, and much more.
</p>
<div class="btn">
<button class="button">
Request Invite
</button>
</div>
</div>
<div class="images">
<img class="mockups-img" src="images/image-mockups.png" alt="Mockups">
<img class="bg-img" src="images/bg-intro-desktop.svg" alt="Background image">
<img class="bg-img-mobile" src="images/bg-intro-mobile.svg">
</div>
</div>
</section>
<section class="featured">
<div class="container">
<h2>Why choose Easybank?</h2>
<p class="featured-first-text">We laverage Open Banking to turn your bank account into your financial hub.<br>
Control your finances like never before.</p>
<div class="featured-grid grid--4-cols ">
<div class="featured-grid-item left">
<img src="images/icon-online.svg">
<h3>Online banking</h3>
<p class="featured-text">Our modern web and mobile applications allow you to keep track of your finances wherever you are in the world.</p>
</div>
<div class="featured-grid-item">
<img src="images/icon-budgeting.svg">
<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="featured-grid-item left">
<img src="images/icon-onboarding.svg">
<h3>Fast Onboarding</h3>
<p>We don't do branches. open your account in minutes online and start taking control of your finances right away.</p>
</div>
<div class="featured-grid-item">
<img src="images/icon-api.svg">
<h3>Open API</h3>
<p>Manage your savings, investments, pension, and more from one account. Tracking your money has never been easier.</p>
</div>
</div>
</div>
</section>
<section class="section-articles">
<div class="container">
<h2>Latest Articles</h2>
<div class="articles-card grid--4-cols">
<div class="articles-grid left">
<img src="images/image-currency.jpg" alt="Picture of currency">
<div class="articles-grid-content">
<span>By Claire Robinson</span>
<h4>
<a href="#">
Receive money in any currency with no fees
</a>
</h4>
<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>
</div>
</div>
<div class="articles-grid">
<img src="images/image-restaurant.jpg" alt="Picture of restaurant">
<div class="articles-grid-content">
<span>By Wilson Hutton</span>
<h4>
<a href="#">
Treat yourself without worring abut money
</a>
</h4>
<p>Our simple budgeting feature allows you to separate out your spending and set realistic limits each month. That means you ...</p>
</div>
</div>
<div class="articles-grid left">
<img src="images/image-plane.jpg" alt="Picture of plane">
<div class="articles-grid-content">
<span>By Wilson Hutton</span>
<h4>
<a href="#">
Take your Easybank card whereever you go
</a>
</h4>
<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>
</div>
</div>
<div class="articles-grid">
<img src="images/image-confetti.jpg" alt="Picture of plane">
<div class="articles-grid-content">
<span>By Claire Robinson</span>
<h4>
<a href="#">
Our invite-only Beta accounts are now live!
</a>
</h4>
<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 trough the site ...</p>
</div>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<div class="footer-grid grid--3-cols-footer">
<div class="footer-grid-cl-1">
<img src="images/logo-footer.svg" alt="Logo">
<ul class="social-list grid--5-cols" role="list" aria-label="Social links">
<li>
<a aria-label="facebook" href="#">
<svg class="social-icon">
<use xlink:href="images/social-icons.svg#icon-facebook"></use>
</svg>
</a>
</li>
<li>
<a aria-label="youtube" href="#">
<svg class="social-icon">
<use xlink:href="images/social-icons.svg#icon-youtube"></use>
</svg>
</a>
</li>
<li>
<a aria-label="twitter" href="#">
<svg xmlns="http://www.w3.org/2000/svg" width="21" height="18">
<use xlink:href="images/social-icons.svg#icon-twitter"></use>
</svg>
</a>
</li>
<li>
<a aria-label="pinterest" href="#">
<svg class="social-icon">
<use
xlink:href="images/social-icons.svg#icon-pinterest"
></use>
</svg>
</a>
</li>
<li>
<a aria-label="instagram" href="#">
<svg class="social-icon">
<use
xlink:href="images/social-icons.svg#icon-instagram"
></use>
</svg>
</a>
</li>
</ul>
</div>
<nav class="footer-grid-cl-2">
<ul class="footer-nav-el">
<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>
</nav>
<div class="footer-grid-cl-3">
<button class="button">Request Invite</button>
<p>© Easybank. All Rights Reserved</p>
</div>
</div>
</div>
</footer>
<script type="module" src="/main.js"></script>
</body>
</html>