-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
173 lines (168 loc) · 5.78 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
<!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" />
<link rel="stylesheet" href="style.css" />
<title>WallyPay</title>
</head>
<body>
<nav class="nav-bar">
<div class="nav-items">
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
<a href="#">Blog</a>
<a href="#">Carriers</a>
</div>
<button>Login</button>
</nav>
<header class="hero-section">
<div class="hero-text-container">
<h1
>Next generation<br />
digital banking</h1
>
<p
>Take your financial life online. Your WallyPay account<br />
will be a one-stop-shop for spending, saving,<br />budgeting, investing,
and much more.</p
>
<button>login</button>
</div>
<div class="hero-img-container">
<img src="./images/image-mockups.png" alt="" />
</div>
</header>
<div class="container">
<section class="why-us">
<h1>Why choose WallyPay?</h1>
<p
>We leverage open banking to turn your bank account into your
financial hub.<br />Control your finances like never before.</p
>
</section>
<section class="features-section">
<div class="feature-item">
<img src="./images/icon-online.svg" alt="" />
<h1>Online Banking</h1>
<p
>Our modern web and mobile<br />
applications allow you to keep<br />
track of your finances wherever<br />
you are in the world.</p
>
</div>
<div class="feature-item">
<img src="./images/icon-budgeting.svg" alt="" />
<h1>Simple Budgeting</h1>
<p
>See exactly where your money<br />
goes every month. Receive<br />
notifications when you're close to<br />
hitting your limits.</p>
</div>
<div class="feature-item">
<img src="./images/icon-onboarding.svg" alt="" />
<h1>Fast Onboarding</h1>
<p
>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="feature-item">
<img src="./images/icon-api.svg" alt="" />
<h1>Open API</h1>
<p
>Manage your savings, investments,<br />
pension and much more from one<br />
account. Tracking your money has<br />
never been easier.</p
>
</div>
</section>
<section class="blog-section">
<h1>Latest Articles</h1>
<div class="article-container">
<div class="article">
<img src="./images/image-currency.jpg" alt="" />
<div class="content">
<h4
>Receive money in any<br />
currency with no fees.</h4
>
<p
>The world is getting smaller and<br />
we are becoming more mobile. So,<br />
why should you be forced to only<br />
receive money in a single...</p
>
</div>
</div>
<div class="article">
<img src="./images/image-restaurant.jpg" alt="" />
<div class="content">
<h4
>Receive money in any<br />
currency with no fees.</h4
>
<p
>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>
<div class="article">
<img src="./images/image-plane.jpg" alt="" />
<div class="content">
<h4>Take Your WallyPay card<br />wherever you go.</h4>
<p
>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>
<div class="article">
<img src="./images/image-confetti.jpg" alt="" />
<div class="content">
<h4>Our invite-only Beta<br />accounts are live now!</h4>
<p
>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>
</div>
</section>
</div>
<footer class="footer">
<div class="footer-container">
<div class="social-container">
<img src="./images/icon-facebook.svg" alt="" />
<img src="./images/icon-instagram.svg" alt="" />
<img src="./images/icon-twitter.svg" alt="" />
<img src="./images/icon-pinterest.svg" alt="" />
</div>
<div class="menu">
<a href="#">About us</a>
<a href="#">Contact us</a>
<a href="#">Blog</a>
</div>
<div class="menu">
<a href="#">Carriers</a>
<a href="#">Support</a>
<a href="#">Privacy Policy</a>
</div>
<button>Login</button>
</div>
</footer>
</body>
</html>