-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
383 lines (373 loc) · 18.7 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
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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- * Title -->
<title>MyProduct</title>
<!-- * link -->
<link rel="stylesheet" href="./src/output.css">
<!-- * favicon -->
<link rel="shortcut icon" href="./assets/logo/Group 190.svg" type="image/x-icon">
<!-- * Js -->
<script defer src="./script/script.js"></script>
<!-- * Add day and night mode styles -->
<style>
body.day-mode {
background-color: #ffffff;
color: black;
}
body.night-mode {
background-color: #1F2E35;
color: #fff;
}
</style>
</head>
<body id="body" class="text-text-clr">
<!-- * header start -->
<header class="px-32 pt-10">
<!-- * navbar start -->
<nav class="flex justify-between items-center">
<div class="flex justify-between items-center gap-3">
<img src="./assets/logo/Group 190.svg" alt="">
<p class="text-3xl font-bold">Product</p>
</div>
<div class="flex justify-between items-center gap-8">
<p class="font-semibold text-lg ">Product</p>
<p class="text-lg ">Customers</p>
<p class="text-lg "><a href="./pricing.html">Pricing</a></p>
<p class="text-lg ">Resources</p>
<button class="border-solid border-2 border-[#BCD0E5] px-5 py-2 font-bold">Sign In</button>
<button class=" px-5 py-2 font-bold bg-green-clr text-[#fff]">Sign Up</button>
<img id="toggleModeButton" src="./assets/imgs/Frame 49.svg" alt="">
</div>
</nav>
<!-- * navbar end -->
<div class="flex justify-between items-center py-12">
<div class="w-96">
<p class=" font-bold text-[40px]">Work at the speed of thought</p>
<p class=" mt-8 mb-14 text-[18px]">Tools, tutorials, design and innovation experts, all in one place! The most intuitive way to imagine your next user experience.</p>
<div class="flex items-center gap-4">
<button class="px-5 py-2 font-bold bg-green-clr text-[#fff]">Get started</button>
<img src="./assets/imgs/Triangle Copy 6.svg" alt="">
<p class="text-green-clr font-semibold">Watch the Video</p>
</div>
</div>
<div>
<img src="./assets/imgs/amico.svg" alt="">
</div>
</div>
</header>
<!-- * header end -->
<!-- * main start -->
<main>
<!-- * section-1 start -->
<section class="bg-section-1 px-32 bg-no-repeat mt-20 bg-cover pb-20 ">
<div class="flex justify-center text-center">
<p class="text-4xl font-bold w-[500px]">Product was Built Specifically for You</p>
</div>
<div class="flex justify-between pt-14">
<div class="w-[200px]">
<img src="./assets/imgs/icon.svg" alt="">
<p class="font-bold text-[22px] ">First click tests</p>
<p class="">While most people enjoy casino gambling,</p>
</div>
<div class="w-[200px]">
<img src="./assets/imgs/icon (1).svg" alt="">
<p class="font-bold text-[22px] ">First click tests</p>
<p >While most people enjoy casino gambling,</p>
</div>
<div class="w-[200px]">
<img src="./assets/imgs/icon (2).svg" alt="">
<p class="font-bold text-[22px] ">First click tests</p>
<p >While most people enjoy casino gambling,</p>
</div>
<div class="w-[200px]">
<img src="./assets/imgs/icon (3).svg" alt="">
<p class="font-bold text-[22px] ">First click tests</p>
<p >While most people enjoy casino gambling,</p>
</div>
</div>
<div class="text-center mt-14">
<button class=" px-5 py-2 font-bold bg-green-clr text-[#fff]">SIGN UP NOW</button>
</div>
</section>
<!-- * section-1 end -->
<!-- * section-2 start -->
<section class="px-32 my-32">
<div class="flex justify-between ">
<div class="grid grid-rows-1">
<div class="w-[500px]">
<p class=" font-bold py-5 text-lg">Effortless Validation for</p>
<p class="font-bold text-4xl ">Management</p>
</div>
<div class="w-[500px] ">
<p class=" font-bold text-lg ">Accessory makers</p>
<p class=" py-5">While most people enjoy casino gambling, sports betting, lottery and bingo playing for the fun</p>
<p class=" font-bold text-lg">Alterationists</p>
<p class=" py-5">If you are looking for a new way to promote your business that won’t cost you more money, </p>
</div>
</div>
<div>
<img src="./assets/imgs/amico-1.svg" alt="">
</div>
</div>
</section>
<!-- * section-2 end -->
<!-- * section-3 start -->
<section class="px-32 my-32">
<div class="flex justify-between">
<div>
<img src="./assets/imgs/amico-2.svg" alt="">
</div>
<div class="w-[486px] ">
<p class="font-bold text-[18px] mt-8">Easier decision making for</p>
<p class="font-bold text-4xl mt-5">Customer Support</p>
<p class="py-7">The Myspace page defines the individual, his or her characteristics, traits, personal choices and the overall personality of the person. </p>
<div>
<div class="flex items-center gap-7">
<img src="./assets/logo/Group 13.svg" alt="">
<p>Never worry about overpaying for your energy again. </p>
</div>
<div class="flex items-center gap-7 py-8">
<img src="./assets/logo/icon (4).svg" alt="">
<p>We will only switch you to energy companies that we trust and will treat you right</p>
</div>
<div class="flex items-center gap-7">
<img src="./assets/logo/Group 13 Copy.svg" alt="">
<p>We track the markets daily and know where the savings are.</p>
</div>
</div>
</div>
</div>
</section>
<!-- * section-3 end -->
<!-- * section-4 start -->
<section class="px-32 my-32">
<div class="flex justify-between">
<div class="grid grid-rows-1 ">
<div class="w-[500px]">
<p class=" font-bold py-5 text-lg">Optimisation for</p>
<p class=" font-bold text-4xl ">Collaborative</p>
<p class="pt-5">Few would argue that, despite the advancements of feminism over the past three decades, women still face a double standard when it comes to their behavior. </p>
</div>
<div class="w-[500px] ">
<p class="font-bold text-lg ">Accessory makers</p>
<p class=" py-5">While most people enjoy casino gambling, sports betting, lottery and bingo playing for the fun</p>
<p class=" font-bold text-lg">Alterationists</p>
<p class=" py-5">If you are looking for a new way to promote your business that won’t cost you more money, </p>
</div>
</div>
<div>
<img src="./assets/imgs/amico-3.svg" alt="">
</div>
</div>
</section>
<!-- * section--4 end -->
<!-- * section-5 start -->
<section class="px-32 my-32 bg-section-5 bg-no-repeat bg-contain ">
<div class="text-center grid justify-center ">
<p class="text-[32px] font-bold py-5">Quick & Easy Process</p>
<p class="w-[500px]">Do you require some help for your project: Conception workshop, prototyping, marketing strategy, landing page, Ux/UI?</p>
</div>
<div class="flex justify-around items-center py-8">
<div class="flex items-start">
<img src="./assets/imgs/Avator.svg" alt="">
<img src="./assets/imgs/Text.svg" alt="">
</div>
<div class="flex items-center">
<img src="./assets/imgs/Text (1).svg" alt="">
<img src="./assets/imgs/Avator (1).svg" alt="">
</div>
</div>
<div class="flex items-center justify-around">
<div class="flex items-center">
<img src="./assets/imgs/Text (2).svg" alt="">
<img src="./assets/imgs/Avator (2).svg" alt="">
</div>
<div class="flex items-center">
<img src="./assets/imgs/Avator (3).svg" alt="">
<img src="./assets/imgs/Text (3).svg" alt="">
</div>
</div>
<div class="text-center mt-10">
<button class=" px-5 py-2 font-bold bg-green-clr text-[#fff]">Contact our expert</button>
</div>
</section>
<!-- * section-5 end -->
<!-- * section-6 start -->
<section class="px-32 my-32 ">
<div>
<p class="text-[34px] font-bold">Contents Strategies</p>
<p class="mb-5">We focus on ergonomics and meeting you where you work. It's only a keystroke away. </p>
</div>
<div class="flex justify-between ">
<div class="border-2 border-solid border-[#DEDEDE]">
<img src="./assets/imgs/image.svg" alt="">
<p class="p-5" >By <span class="font-bold">Wahid Ari </span>| 03 March 2019</p>
<p class="font-bold text-[24px] px-5 w-[335px] pb-5">Increasing Prosperity With Positive Thinking</p>
</div>
<div class="border-2 border-solid border-[#DEDEDE]">
<img src="./assets/imgs/Bitmap.svg" alt="">
<p class="p-5">By <span class="font-bold">Wahid Ari </span>| 03 March 2019</p>
<p class="font-bold text-[24px] px-5 w-[335px] pb-5 text-green-clr">Motivation Is The First Step To Success</p>
</div>
<div class="border-2 border-solid border-[#DEDEDE]">
<img src="./assets/imgs/Bitmap (1).svg" alt="">
<p class="p-5">By <span class="font-bold">Wahid Ari </span>| 03 March 2019</p>
<p class="font-bold text-[24px] px-5 w-[335px] pb-5">Success Steps For Your Personal Or Business</p>
</div>
</div>
<div class="flex justify-center mt-20">
<img src="./assets/imgs/carosolt.svg" alt="">
</div>
</section>
<!-- * section-6 end -->
<!-- * section-7 start -->
<section class="px-32 my-32 ">
<div class="text-center">
<p class="font-bold text-[34px] ">Price Table</p>
<p class="mb-20">We offer competitive price</p>
</div>
<div class="flex justify-between">
<div class="shadow-[1px_5px_30px_-21px_rgba(0,0,0,0.75)] w-[335px] h-[456px] px-10 py-8 text-center">
<p class="font-bold text-[24px]">Free</p>
<p>Brief price description</p>
<div class="flex justify-center items-center gap-2">
<p class="font-bold text-[76px] text-green-clr">0</p>
<div class="">
<p class="font-bold text-green-clr text-[24px]">$</p>
<p class="text-[#AFAFAF]">Per / month</p>
</div>
</div>
<p>Only 2 Op erators</p>
<p class="my-5"> Notifications</p>
<p>Landing Pages</p>
<button class="px-5 py-2 font-bold bg-green-clr mt-10 text-[#fff] rounded-lg">Order Now</button>
</div>
<div class="shadow-[1px_5px_30px_-21px_rgba(0,0,0,0.75)] w-[335px] h-[456px] px-10 py-8 text-center bg-green-clr text-white">
<p class="font-bold text-[24px]">Standard</p>
<p>Brief price description</p>
<div class="flex justify-center items-center gap-2">
<p class="font-bold text-[76px] ">5</p>
<div class="">
<p class="font-bold text-[24px]">$</p>
<p class="text-[#AFAFAF]">Per / month</p>
</div>
</div>
<p>5+ Operators</p>
<p class="my-5"> Notifications</p>
<p>Landing Pages</p>
<button class="px-5 py-2 font-bold bg-white mt-10 text-green-clr rounded-lg">Order Now</button>
</div>
<div class="shadow-[1px_5px_30px_-21px_rgba(0,0,0,0.75)] w-[335px] h-[456px] px-10 py-8 text-center">
<p class="font-bold text-[24px]">Premium</p>
<p>Brief price description</p>
<div class="flex justify-center items-center gap-2">
<p class="font-bold text-[76px] text-green-clr">10</p>
<div class="">
<p class="font-bold text-green-clr text-[24px]">$</p>
<p class="text-[#AFAFAF]">Per / month</p>
</div>
</div>
<p>10+ Operators</p>
<p class="my-5"> Notifications</p>
<p>Landing Pages</p>
<button class="px-5 py-2 font-bold bg-green-clr mt-10 text-[#fff] rounded-lg">Order Now</button>
</div>
</div>
</section>
<!-- * section-7 end -->
<!-- * section-8 start -->
<section class="px-32 my-32 ">
<div class="text-center ">
<p class="font-bold text-[34px]">What Clients Say</p>
<p class="mb-10">Problems trying to resolve the conflict between the two major realms of Classical physics: Newtonian mechanics </p>
</div>
<div class="flex justify-between ">
<div class="w-[335px] border-2 border-solid border-[#DEDEDE] p-5">
<img src="./assets/imgs/Group 204.svg" alt="">
<p class="text-[#737373] my-5"> Product helps you see how many more days you need to work to reach your financial goal.</p>
<div class="flex gap-4">
<img src="./assets/imgs/Ellipse 2.svg" alt="">
<div>
<p class="text-green-clr font-semibold">Wahid Ari</p>
<p>Designer</p>
</div>
</div>
</div>
<div class="w-[335px] border-2 border-solid border-[#DEDEDE] p-5">
<img src="./assets/imgs/Group 204.svg" alt="">
<p class="text-[#737373] my-5"> Product helps you see how many more days you need to work to reach your financial goal.</p>
<div class="flex gap-4">
<img src="./assets/imgs/Ellipse 2 (1).svg" alt="">
<div>
<p class="text-green-clr font-semibold">Wahid Ari</p>
<p>Designer</p>
</div>
</div>
</div>
<div class="w-[335px] border-2 border-solid border-[#DEDEDE] p-5">
<img src="./assets/imgs/Group 204.svg" alt="">
<p class="text-[#737373] my-5"> Product helps you see how many more days you need to work to reach your financial goal.</p>
<div class="flex gap-4">
<img src="./assets/imgs/Ellipse 2 (2).svg" alt="">
<div>
<p class="text-green-clr font-semibold">Wahid Ari</p>
<p>Designer</p>
</div>
</div>
</div>
</div>
</section>
<!-- * section-8 end -->
<!-- * section-9 start -->
<section class="px-32 my-32 ">
<div class="flex justify-center">
<img src="./assets/imgs/Frame 16.svg" alt="">
</div>
</section>
<!-- * section-9 end -->
</main>
<!-- * main end -->
<!-- * footer start -->
<footer class="px-32 mt-32 mb-10 ">
<div class="flex justify-between">
<div>
<div class="flex gap-3">
<img src="./assets/logo/Group 190.svg" alt="">
<p class="text-3xl font-bold">Product</p>
</div>
<div class="flex gap-3 mt-5">
<img src="./assets/logo/Group 1340.svg" alt="">
<img src="./assets/logo/Group 1342.svg" alt="">
<img src="./assets/logo/Group 1341.svg" alt="">
</div>
</div>
<div class="leading-loose">
<p class="font-bold text-[20px]">Resource</p>
<p>About Us</p>
<p>Blog</p>
<p>Contact</p>
<p>FAQ</p>
</div>
<div class="leading-loose">
<p class="font-bold text-[20px]">Legal Stuff</p>
<p>Disclaimer</p>
<p>Financing</p>
<p>Privacy Policy</p>
<p>Terms of Service</p>
</div>
<div class="w-[300px]">
<p class="font-bold text-[20px]">knowing you're always on the best energy deal.</p>
<input class="block my-5 border-2 w-[300px] h-[40px]" type="text">
<button class=" px-5 py-2 font-bold bg-green-clr text-[#fff]">Sign up Now</button>
</div>
</div>
<div class="text-center mt-10">
<p>Made With Love By Figmaland All Right Reserved</p>
</div>
</footer>
<!-- * footer end -->
</body>
</html>