-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
146 lines (146 loc) · 5.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="styles.css">
<title>Frontend Mentor | Easybank landing page</title>
</head>
<body>
<header class="header">
<nav class="navigation">
<div class="logo">
<img src="Images/logo.svg">
</div>
<ul class="nav-items">
<li class="nav-items nav-li"><a href=#>Home</a></li>
<li class="nav-items nav-li"><a href=#>About</a></li>
<li class="nav-items nav-li"><a href=#>Contact</a></li>
<li class="nav-items nav-li"><a href=#>Blog</a></li>
<li class="nav-items nav-li"><a href=#>Careers</a></li>
</ul>
<a id="invite" class="btn-nav" href="#">
<button class="btn">Request Invite</button>
</a>
</nav>
</header>
<section class="upper-body">
<div class="main-body">
<div class="text">
<div class="body-text">
<h2 class="title">Next generation <br> digital banking</h2>
<p class="details main-body-text">
Take your financial life online. Your Easybank account <br> will be a one-stop-shop
for spending, saving, <br> budgeting, investing, and much more.
</p>
<button class="btn">
Request Invite
</button>
</div>
</div>
<div class="main-images">
<img class="phones" src="images/image-mockups.png" alt="">
</div>
</div>
</section>
<section class="main-body-two">
<h3>Why choose Easybank?</h3>
<p class="details">
We leverage Open Banking to turn your bank account into your financial hub. <br> Control
your finances like never before.
</p>
<div class="cards cards-two">
<div class="card card-1">
<img src="images/icon-online.svg"><br>
<span>Online Banking</span><br>
<p class="details">Our modern web and mobile<br> applications allow you to keep<br> track of your finances
wherever you<br> are in the world.</p>
</div>
<div class="card card-2">
<img src="images/icon-budgeting.svg"><br>
<span>Simple Budgeting</span><br>
<p class="details">See exactly where your money<br> goes each month. Receive<br> notifications when you’re
close to<br> hitting your limits.</p>
</div>
<div class="card card-3">
<img src="images/icon-onboarding.svg"><br>
<span>Fast Onboarding</span><br>
<p class="details"> We don’t do branches. Open your<br> account in minutes online and start<br> taking control
of your finances<br> right away.</p>
</div>
<div class="card card-4">
<img src="images/icon-api.svg"><br>
<span>Open API</span><br>
<p class="details"> Manage your savings, investments,<br> pension, and much more from one<br> account. Tracking
your money has<br> never been easier.</p>
</div>
</div>
</section>
<section class="lower-body">
<div class="cards lower-body-inner">
<h3 class="h3">
Latest Articles
</h3>
<div class="pic">
<img src="images/image-currency.jpg"><br>
<span class="author details">By Claire Robinson</span><br>
<span class="title-article">Receive money in any<br> currency with no fees</span><br>
<p class="details">The world is getting smaller and<br> we’re becoming more mobile. So<br> why should you be
forced to only receive money in a single …</p>
</div>
<div class="pic">
<img src="images/image-restaurant.jpg"><br>
<span class="author details">By Wilson Hutton</span><br>
<span class="title-article">Treat yourself without<br> worrying about money</span><br>
<p class="details">Our simple budgeting feature<br> allows you to separate out your<br> spending and set
realistic limits<br> each month. That means you …</p>
</div>
<div class="pic">
<img src="images/image-plane.jpg"><br>
<span class="author details">By Wilson Hutton</span><br>
<span class="title-article">Take your Easybank card<br> wherever you go</span><br>
<p class="details">We want you to enjoy your travels.<br> This is why we don’t charge any<br> fees on purchases
while you’re<br> abroad. We’ll even show you …</p>
</div>
<div class="pic">
<img src="images/image-confetti.jpg"><br>
<span class="author details">By Claire Robinson</span><br>
<span class="title-article">Our invite-only Beta<br> accounts are now live!</span><br>
<p class="details">After a lot of hard work by the <br>whole team, we’re excited to launch<br> our closed beta.
It’s easy to request<br> an invite through the site ...</p>
</div>
</div>
</section>
<footer class="cards">
<div class="social-media">
<img src="images/icon-facebook.svg">
<img src="images/icon-youtube.svg">
<img src="images/icon-twitter.svg">
<img src="images/icon-pinterest.svg">
<img src="images/icon-instagram.svg">
</div>
<div class="footer-titles">
<div>
<p class="footer-content">About Us</p>
<p class="footer-content">Contact</p>
<p class="footer-content">Blog</p>
</div>
<div>
<p class="footer-content">Careers</p>
<p class="footer-content">Support</p>
<p class="footer-content">Privacy Policy</p>
</div>
</div>
<div class="copyright">
<a href="#">
<button class="btn btn-footer">Request Invite</button>
</a>
<p>
© Easybank. All Rights Reserved
</p>
</div>
</footer>
<script src="app.js"></script>
</body>
</html>