-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
349 lines (348 loc) · 12.6 KB
/
Copy pathindex.html
File metadata and controls
349 lines (348 loc) · 12.6 KB
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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
<!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="vendor/normalize.css" />
<link rel="stylesheet" href="fonts/fonts.css" />
<link rel="stylesheet" href="pages/index.css" />
<title>Cloud Budget</title>
</head>
<body class="root">
<header class="header">
<div class="header__overlay">
<div class="header__top">
<div class="logo">
<img
class="logo__img"
src="./images/logo-cloud.svg"
alt="Logo image"
/>
<p class="logo__text">CLOUDBUDGET</p>
</div>
<nav class="navbar">
<ul class="navbar__list">
<li class="navbar__item">
<a href="#" class="navbar__link">OVERVIEW</a>
</li>
<li class="navbar__item">
<a href="#" class="navbar__link">FEATURES</a>
</li>
<li class="navbar__item">
<a href="#" class="navbar__link">TECHNOLOGY</a>
</li>
<li class="navbar__item">
<a href="#" class="navbar__link">CONTACT</a>
</li>
<li class="navbar__item">
<a href="#" class="navbar__link">SIGN UP</a>
</li>
</ul>
</nav>
<div class="header__lang-btn-wrapper">
<div class="header__lang-selector">
<img
class="header__flag-country"
src="images/flag-usa.png"
alt="flag"
/>
<p class="header__short-lang-name">EN</p>
<button class="header__arrow-lang">
<span class="header__arrow">▼</span>
</button>
</div>
<button class="btn hover-white-red">LOGIN</button>
</div>
</div>
<div class="header__text-wrapper">
<h1 class="header__title">CLOUDBUDGET</h1>
<p class="header__paragraph">
Cloud budget management for everyone. Only €69.95 a Month After a 7
Day Trial of Up to €4.99
</p>
<button
class="btn btn_increased btn_bckg-color_white btn_font-color_scarlet hover-filter-brightness"
>
SIGN UP
</button>
</div>
</div>
</header>
<section class="video">
<div class="video__text-container">
<h2 class="subtitle">Easy to Use Cloud Budget Management Software</h2>
<p class="paragraph">
Our software is made so you can access and manage your budget and
expenses online at any time from any device. It provides detailed
income and expense reports with graphs so you can easilly see your
spending patterns and budget at a glance. Read below to find out more.
</p>
<a class="video__link" href="#">Learn More</a>
</div>
<div class="video__wrapper-clip">
<button class="video__btn-play"> ▶</button>
<img class="video__poster" src="./images/poster.png" alt="poster" />
</div>
</section>
<section class="features">
<h2 class="subtitle">Features</h2>
<div class="features__cards">
<div class="features__card">
<img
class="features__img"
src="./images/card-currency.png"
alt="currency"
/>
<div class="features__text-container">
<p class="box-title text-center">
Supports All Currencies and Cards
</p>
<p class="paragraph paragraph_size_s text-center">
We support all popular currencies and is fully customizable to add
</p>
<a href="#" class="features__link">Read More</a>
</div>
</div>
<div class="features__card">
<img
class="features__img"
src="./images/card-device.png"
alt="device"
/>
<div class="features__text-container">
<p class="box-title text-center">Manage your expenses on the go</p>
<p class="paragraph paragraph_size_s text-center">
You can access your account from anywhere in the world on any
device
</p>
<a href="#" class="features__link">Read More</a>
</div>
</div>
<div class="features__card">
<img
class="features__img"
src="./images/card-software.png"
alt="software"
/>
<div class="features__text-container">
<p class="box-title text-center">
Cloud Budget Management Software
</p>
<p class="paragraph paragraph_size_s text-center">
Our software is made so you can access and manage your budget
</p>
<a href="#" class="features__link">Read More</a>
</div>
</div>
</div>
</section>
<section class="technology">
<h2 class="subtitle">Technology</h2>
<div class="technology__cards">
<div class="technololy__card">
<p class="technology__number">01</p>
<div class="technology__icon-wrapper">
<img src="./images/cloud.svg" alt="" class="technology__icon" />
</div>
<div class="technology__text-wrapper">
<p class="box-title text-center">Cloud Storage</p>
<p class="paragraph paragraph_size_s text-center">
Access your account from anywhere in the world on any device
</p>
</div>
</div>
<div class="technololy__card">
<p class="technology__number">02</p>
<div class="technology__icon-wrapper">
<img src="./images/secure.svg" alt="" class="technology__icon" />
</div>
<div class="technology__text-wrapper">
<p class="box-title text-center">Secure</p>
<p class="paragraph paragraph_size_s text-center">
All your information is stored on secure cloud servers
</p>
</div>
</div>
<div class="technololy__card">
<p class="technology__number">03</p>
<div class="technology__icon-wrapper">
<img src="./images/pdf.svg" alt="" class="technology__icon" />
</div>
<div class="technology__text-wrapper">
<p class="box-title text-center">PDF Download</p>
<p class="paragraph paragraph_size_s text-center">
Download any of your reports in PDF format
</p>
</div>
</div>
<div class="technololy__card">
<p class="technology__number">04</p>
<div class="technology__icon-wrapper">
<img src="./images/csv.svg" alt="" class="technology__icon" />
</div>
<div class="technology__text-wrapper">
<p class="box-title text-center">CSV Download</p>
<p class="paragraph paragraph_size_s text-center">
All your information is stored on secure cloud servers
</p>
</div>
</div>
</div>
</section>
<section class="app-download">
<div class="app-download__wrapper">
<h2 class="subtitle white-font">Stay focused on saving money</h2>
<p class="paragraph white-font">
It is important to stay focused on saving money in any way you can. We
help you monitor your spending habits so you can easily spot and cut
any unnecessary expenses. Simply join today to get started!
</p>
<div class="app-download__icons">
<img
src="./images/google-logo.svg"
alt="Playmarket logo"
class="app-download__icon"
/>
<img
src="./images/apple-logo.svg"
alt="App store logo"
class="app-download__icon"
/>
<img
src="./images/ms-logo.svg"
alt="Microsoft logo"
class="app-download__icon"
/>
</div>
</div>
<div class="app-download__img-wrapper">
<img
src="./images/opacity-img1.png"
alt=""
class="app-download__img app-download__img_position_back-left"
/>
<img
src="./images/opacity-img2.png"
alt=""
class="app-download__img app-download__img_position_back-right"
/>
<img src="./images/main-img-app.png" alt="" class="app-download__img" />
</div>
</section>
<section class="contact-us">
<div class="contact-us__wrapper">
<h2 class="subtitle">Contact</h2>
<p class="paragraph">
Questions or concerns? Just fill out the form below and our support
team will get back to you within 24 hours
</p>
</div>
<form class="form" method="POST" action="/api/users">
<div class="form__name-wrapper">
<label class="form__label" for="first-name"></label>
<input
class="form__input form__input_type_small-left"
type="text"
name="firstName"
id="first-name"
placeholder="First Name"
/>
<label class="form__label" for="last-name"></label>
<input
class="form__input form__input_type_small-right"
type="text"
name="lastName"
id="last-name"
placeholder="Last Name"
/>
</div>
<label class="form__label" for="phone-number"></label>
<input
class="form__input"
type="tel"
name="phoneNumber"
id="phone-number"
placeholder="Phone Number"
/>
<select class="form__select" name="select">
<option class="form__option" value="default" selected disabled hidden>
Select Service
</option>
<option class="form__option" value="value1">Service 1</option>
<option class="form__option" value="value2">Service 2</option>
<option class="form__option" value="value3">Service 3</option>
</select>
<!-- <button type="submit">SUBMIT NOW</button> -->
<button
class="btn btn_increased btn_bckg-color_red hover-filter-brightness"
type="button"
>
SUBMIT NOW
</button>
</form>
</section>
<footer class="footer">
<div class="footer__columns">
<p class="box-title">Address</p>
<p class="paragraph paragraph_size_s">
Pipang Ltd, Griva Digeni, 81-83 Jacovides Tower, 1st Floor 1090
Picosia USA
</p>
<p class="box-title">Services</p>
<div class="paragraph paragraph_size_s">
<ul class="footer__services-list">
<li class="footer__services-item">
<a href="#" class="footer__services-link">Overview</a>
</li>
<li class="footer__services-item">
<a href="#" class="footer__services-link">Features</a>
</li>
<li class="footer__services-item">
<a href="#" class="footer__services-link">Technology</a>
</li>
<li class="footer__services-item">
<a href="#" class="footer__services-link">Terms & Conditions</a>
</li>
<li class="footer__services-item">
<a href="#" class="footer__services-link">Privecy</a>
</li>
</ul>
</div>
<p class="box-title">Get in Touch</p>
<div class="footer__contacts-container">
<p class="paragraph paragraph_size_s">info@cloudbudget.com</p>
<p class="paragraph paragraph_size_s">+1 844-721-7120</p>
<div class="footer__icons">
<a href="#" class="footer__icon-link"
><img
src="./images/fb.png"
alt="facebook"
class="footer__icon-img"
/></a>
<a href="#" class="footer__icon-link"
><img
src="./images/in.png"
alt="linkedin"
class="footer__icon-img"
/></a>
<a href="#" class="footer__icon-link"
><img
src="./images/tw.png"
alt="twitter"
class="footer__icon-img"
/></a>
</div>
</div>
<p class="box-title">We Support</p>
<div class="footer__payment-methods">
<img
src="./images/payment.png"
alt="payment methods"
class="footer__payment-img"
/>
</div>
</div>
</footer>
</body>
</html>