-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
254 lines (244 loc) · 11.6 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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
<!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="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/normalize.css">
<link rel="stylesheet" href="./css/style.css">
<title>Document</title>
</head>
<body>
<section class="main-section" id='overview'>
<div class="bg"></div>
<div class="container">
<header class='main-header'>
<div class="logo">
<a href="#">
<img class='img' src="img/logo.png" width='172' height='29' alt="logo">
</a>
</div>
<nav class='navbar'>
<ul class='nav-list'>
<li><a class='active-nav' href="#overview">Overview</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#tech">Technology</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#signup">Sign Up</a></li>
</ul>
</nav>
<div class="header-left">
<div class="lang">
<img src="img/usa.png" width='32' height='32' alt="usa-flag">
<p>En</p>
<img src="img/down.png" width='18' height='18' alt="down-arrow">
</div>
<button type="button" class="btn btn-login">Login</button>
</div>
</header>
<div class="call-to-action">
<h1>Cloudbudget</h1>
<p>Cloud budget management for everyone. Only €69.95 a Month After a 7 Day Trial of
<span> Up to €4.99</span></p>
<button type='button' class="btn btn-signup">Sign Up</button>
</div>
</div>
</section>
<!-- END OF MAIN SECTION -->
<section class="software-section">
<div class="container">
<div class="software-section--wrapper">
<div class="software-section--left">
<h2 class='section-heading'>Easy to Use Cloud Budget Management Software</h2>
<p>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='learn-more' href="#">Learn More</a>
</div>
<div class="software-section--right">
<img class='img' src="img/vid-bg.png" width="445" height="311" alt="meeting image">
<button class='play-btn'>
<img class='img' src="img/right.png" width='13' height="13" alt="right arrow">
</button>
</div>
</div>
</div>
</section>
<!-- END OF SOFTWARE SECTION -->
<section class='features-section' id='features'>
<div class="container">
<h2 class='section-heading'>Features</h2>
<ul class="features-list">
<li>
<div class="feature">
<h3>Supports All Currencies and Cards</h3>
<p>We support all popular currencies and is fully customizable to add</p>
<a href="#" class="learn-more">Read more</a>
</div>
</li>
<li>
<div class="feature">
<h3>Manage your expenses on the go</h3>
<p>You can access your account from anywhere in the world on any device</p>
<a href="#" class="learn-more">Read more</a>
</div>
</li>
<li>
<div class="feature">
<h3>Cloud Budget Management Software</h3>
<p>Our software is made so you can access and manage your budget</p>
<a href="#" class="learn-more">Read more</a>
</div>
</li>
</ul>
</div>
</section>
<!-- END OF FEATURE SECTION -->
<section class="technology-section" id='tech'>
<div class="container">
<h2 class="section-heading">Technology</h2>
<ul class="techs-list">
<li class='tech'>
<div class="img-wrapper">
<img class='img' src="img/cloud.png" width='80' height='80' alt="cloud">
</div>
<h3>Cloud Storage</h3>
<p>Access your account from anywhere in the world on any device</p>
</li>
<li class='tech'>
<div class="img-wrapper">
<img class='img' src="img/scan.png" width='66' height='66' alt="search">
</div>
<h3>Secure</h3>
<p>All your information is stored on secure cloud servers</p>
</li>
<li class='tech'>
<div class="img-wrapper">
<img class='img' src="img/pdf.png" width='48' height='54' alt="pdf">
</div>
<h3>PDF Download</h3>
<p>Download any of your reports in PDF format</p>
</li>
<li class='tech'>
<div class="img-wrapper">
<img class='img' src="img/csv.png" width='48' height='54' alt="csv">
</div>
<h3>CSV Download</h3>
<p>All your information is stored on secure cloud servers</p>
</li>
</ul>
</div>
</section>
<!-- END OF TECH SECTION -->
<section class="saving-section">
<div class="container">
<div class="saving-wrapper">
<div class="saving--left">
<h2 class='section-heading'>Stay focused on saving money</h2>
<p>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>
<ul class="social-links">
<li><a href="#">
<img src="img/play-store.png" alt="play store">
</a></li>
<li><a href="#">
<img src="img/apple.png" alt="apple store">
</a></li>
<li><a href="#">
<img src="img/windows.png" alt="windows">
</a></li>
</ul>
</div>
<div class="saving--right">
<img class="img" src="img/bg-restaurant.png" alt="">
</div>
</div>
</div>
</section>
<!-- END OF SAVING SECTION -->
<section class="contact-section" id='contact'>
<div class="container">
<div class="contact-wrapper">
<div class="contact--left">
<h2 class='section-heading'>Contact</h2>
<p>Questions or concerns? Just fill out the form below and our support team will get back to you within 24 hours</p>
</div>
<div class="contact--right">
<form class='contact-form' action="#">
<div class="names">
<input class='first-name' type="text" required name='first-name' placeholder="First Name">
<input class='last-name' type="text" required name='last-name' placeholder="Last Name">
</div>
<input class='phone' type="phone" required placeholder="Phone Number">
<select name="selection" id="service">
<option value="Select Service" default>Select Service</option>
<option value="service">Service</option>
</select>
<button class='btn btn-submit' type="submit">Submit now</button>
</form>
</div>
</div>
</div>
</section>
<!-- END OF CONTACT SECTION -->
<footer class='main-footer'>
<div class="container">
<ul class="footer-list">
<li>
<h3>Address</h3>
<ul>
<li>
Pipang Ltd, Griva Digeni,
</li>
<li>
81-83 Jacovides Tower, 1st Floor
</li>
<li>
1090 Picosia USA
</li>
</ul>
</li>
<li>
<h3>Services</h3>
<ul>
<li><a href="#">Overview</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">Technology</a></li>
<li><a href="#">Terms & Conditions</a></li>
<li><a href="#">Privacy</a></li>
</ul>
</li>
<li>
<h3>Get In Touch</h3>
<ul>
<li><a href="#">[email protected]</a></li>
<li><a href="#">+1 844-721-7120</a></li>
<li>
<ul class="sns">
<li><a href="https://facebook.com">
<img src="./img/facebook.png" alt="facebook">
</a></li>
<li><a href="https://linkedin.com">
<img src="./img/linkedin.png" alt="linkedin">
</a></li>
<li><a href="https://twitter.com">
<img src="./img/twitter.png" alt="twitter">
</a></li>
</ul>
</li>
</ul>
</li>
<li>
<h3>We Support</h3>
<ul class="payment">
<li><a href="#">
<img class='img' width="216" height="31" src="./img/payment.png" alt="payment-methods">
</a></li>
</ul>
</li>
</ul>
<p class="privacy">Copyright 2021 CloudBudget</p>
</div>
</footer>
<!-- END OF FOOTER -->
</body>
</html>