-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
161 lines (158 loc) · 8.13 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
<!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 href="https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400&display=swap" rel="stylesheet">
<title>Frontend Mentor | Easybank landing page</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="logo-menu">
<div class="logo-container">
<img src="images/logo.svg" alt="Logo of a bank website" class="website-logo">
</div>
<nav class="main-nav">
<ul class="main-nav__item">
<li class="main-nav__list"><a href="#" class="main-nav__link">Home</a></li>
<li class="main-nav__list"><a href="#" class="main-nav__link">About</a></li>
<li class="main-nav__list"><a href="#" class="main-nav__link">Contact</a></li>
<li class="main-nav__list"><a href="#" class="main-nav__link">Blog</a></li>
<li class="main-nav__list"><a href="#" class="main-nav__link">Careers</a></li>
</ul>
</nav>
<button class="main-btn --header">Request Invite</button>
<img src="images/icon-hamburger.svg" alt="Hamburger menu icon for mobile devices" class="mobile-menu-icon">
</div>
<header class="header-main">
<div class="images-wrapper">
<div class="menu-background"></div>
<img src="images/image-mockups.png" alt="Picture of 4 phones" class="telephones">
<img src="images/bg-intro-mobile.svg" alt="Colorful background image" class="header-main-background-mobile">
<img src="images/bg-intro-desktop.svg" alt="Colorful background image" class="header-main-background-desktop">
</div>
<div class="header__text">
<h1 class="header-main__heading">Next generation digital banking</h1>
<p class="header-main__subtitle">
Take your financial life online. Your Easybank account will be a one-stop-shop
for spending, saving, budgeting, investing, and much more.</p>
<button class="main-btn">Request Invite</button>
</div>
</header> <!-- **** END OF HEADER **** -->
<section class="features">
<div class="f-wrapper">
<h2 class="features__heading">Why choose Easybank?</h2>
<p class="features__subtitle">We leverage Open Banking to turn your bank account into your financial hub.
Control your finances like never before.</p>
<div class="features-wrapper">
<div class="feature">
<img src="images/icon-online.svg" alt="" class="feature-image">
<h3 class="feature-name">Online Banking</h3>
<p class="feature__subtitle"> 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="images/icon-budgeting.svg" alt="" class="feature-image">
<h3 class="feature-name">Simple Budgeting</h3>
<p class="feature__subtitle"> 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="images/icon-onboarding.svg" alt="" class="feature-image">
<h3 class="feature-name">Fast Onboarding</h3>
<p class="feature__subtitle">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="images/icon-api.svg" alt="" class="feature-image">
<h3 class="feature-name">Open API</h3>
<p class="feature__subtitle"> Manage your savings, investments, pension, and much more from one account.
Tracking
your money has never been easier.</p>
</div>
</div>
</div>
</section> <!-- **** END OF FEATURES SECTION **** -->
<section class="articles">
<h2 class="articles__heading">Latest Articles</h2>
<div class="articles-wrapper">
<div class="article">
<img src="images/image-currency.jpg" alt="Picture shows big amount of money" class="article__image --normal">
<p class="article__autor">By Claire Robinson</p>
<h3 class="article__heading">Receive money in any currency with no fees</h3>
<p class="article__subtitle">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 class="article">
<img src="images/image-restaurant.jpg" alt="Picture shows big amount of money" class="article__image">
<p class="article__autor">By Wilson Hutton</p>
<h3 class="article__heading">Treat yourself without worrying about money</h3>
<p class="article__subtitle"> Our simple budgeting feature allows you to separate out your spending and set
realistic limits each month. That means you …</p>
</div>
<div class="article">
<img src="images/image-plane.jpg" alt="Picture shows big amount of money" class="article__image">
<p class="article__autor">By Wilson Hutton</p>
<h3 class="article__heading">Take your Easybank card wherever you go</h3>
<p class="article__subtitle"> 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 class="article">
<img src="images/image-confetti.jpg" alt="Picture shows big amount of money" class="article__image">
<p class="article__autor">By Claire Robinson</p>
<h3 class="article__heading">Our invite-only Beta accounts are now live!</h3>
<p class="article__subtitle"> 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>
</div>
</section> <!-- **** END OF ARTICLES SECTION **** -->
<footer class="main-footer">
<div class="social-media-wrapper">
<img src=" images/logo-footer.svg" alt="Logo of a bank website" class="mobile-website-logo">
<div class="social-media">
<img src="images/icon-facebook.svg" alt="Facebook icon">
<img src="images/icon-youtube.svg" alt="Youtube icon">
<img src="images/icon-twitter.svg" alt="Twitter icon">
<img src="images/icon-pinterest.svg" alt="Pinteres icon">
<img src="images/icon-instagram.svg" alt="Instagram icon">
</div>
</div>
<nav class="footer-nav">
<ul class="footer-nav__item">
<li class="footer-nav__list"><a href="#" class="footer-nav__link">About us</a></li>
<li class="footer-nav__list"><a href="#" class="footer-nav__link">Contact</a></li>
<li class="footer-nav__list"><a href="#" class="footer-nav__link">Blog</a></li>
<li class="footer-nav__list"><a href="#" class="footer-nav__link">Careers</a></li>
<li class="footer-nav__list"><a href="#" class="footer-nav__link">Support</a></li>
<li class="footer-nav__list"><a href="#" class="footer-nav__link">Privacy Policy</a></li>
</ul>
</nav>
<div class="copyright">
<button class="main-btn">Request Invite</button>
<p class="main-footer__copyright">© Easybank. All Rights Reserved</p>
</div>
</footer> <!-- **** END OF MAIN FOOTER **** -->
<!-- <div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Your Name Here</a>.
</div> -->
<script src="js.js"></script>
<script>
window.watsonAssistantChatOptions = {
integrationID: "647f038b-b2d4-4a05-ae23-4e6ce59b5124", // The ID of this integration.
region: "eu-gb", // The region your integration is hosted in.
serviceInstanceID: "98aa3b5d-1793-42af-9a07-b8cb8f001dfe", // The ID of your service instance.
onLoad: function(instance) { instance.render(); }
};
setTimeout(function(){
const t=document.createElement('script');
t.src="https://web-chat.global.assistant.watson.appdomain.cloud/loadWatsonAssistantChat.js";
document.head.appendChild(t);
});
</script>
</body>
</html>