-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
687 lines (645 loc) · 24.1 KB
/
index.html
File metadata and controls
687 lines (645 loc) · 24.1 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
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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
<!DOCTYPE html>
<html>
<head>
<!-- Basic -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<!-- Site Metas -->
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>Solux | Solution Website Platform</title>
<!-- slider stylesheet -->
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.1.3/assets/owl.carousel.min.css" />
<!-- font wesome stylesheet -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<!-- bootstrap core css -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
<!-- fonts style -->
<link href="https://fonts.googleapis.com/css?family=Poppins:400,600,700&display=swap" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet" />
<!-- responsive style -->
<link href="css/responsive.css" rel="stylesheet" />
<!-- Website logo -->
<link rel="icon" href="images/logo.png">
<!-- Matomo -->
<script>
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="https://solux.matomo.cloud/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '1']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.async=true; g.src='//cdn.matomo.cloud/solux.matomo.cloud/matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
</head>
<body>
<div class="hero_area">
<!-- header section strats -->
<header class="header_section">
<div class="container">
<nav class="navbar navbar-expand-lg custom_nav-container pt-3">
<a class="navbar-brand mr-5" href="index.html">
<img src="images/logo.png" alt="">
<span>
Solux
</span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<div class="d-flex ml-auto flex-column flex-lg-row align-items-center">
<ul class="navbar-nav ">
<li class="nav-item ">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html"> About </a>
</li>
<li class="nav-item">
<a class="nav-link" href="service.html"> Service </a>
</li>
<li class="nav-item active">
<a class="nav-link" href="sales.html">Sales</span></a>
</li>
<li class="nav-item active">
<a class="nav-link" href="contact.html">Contact us</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
</header>
<!-- end header section -->
<!-- slider section -->
<section class=" slider_section position-relative">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active">01</li>
<li data-target="#carouselExampleIndicators" data-slide-to="1">02</li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<div class="container">
<div class="row">
<div class="col-md-7">
<div class="detail-box">
<div>
<h1>
Welcome To <br>
<span>
Solution Providing Services For Continuous Assessments and Assignments
</span>
</h1>
<p>
It is a long established fact that a having accurate solutions and materials needed for courses as
a student saves a lot of time
</p>
<div class="btn-box">
<a href="https://wa.link/g181cx" target ="blank"class="btn-1">
Contact Us
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="container">
<div class="row">
<div class="col-md-7">
<div class="detail-box">
<div>
<h1>
Welcome To <br>
<span>
Solux
</span>
</h1>
<p>
Online platform that provides solutions for Continuous Assessements in a more organized and professional
manner
Accuracy rate of 95.6%
</p>
<div class="btn-box">
<a href="https://wa.link/g181cx" target ="blank"class="btn-1">
Contact Us
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="custom_carousel-control">
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="sr-only">Next</span>
</a>
</div>
</div>
</section>
<!-- end slider section -->
</div>
<!-- about section -->
<section class="about_section layout_padding">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="detail-box">
<div class="heading_container">
<h2>
About Us
</h2>
</div>
<p>
It is a long established fact that a having accurate solutions and materials needed for courses as
a student saves a lot of time. The point of studying alone is good but as they say "Working hard is good but smart is better"
So we propose our services to the public at a considerable amount so as to ease student works
</p>
<a href="login.html">
Get Started
</a>
</div>
</div>
<div class="col-md-6">
<div class="img-box">
<img src="images/about-img.png" alt="">
</div>
</div>
</div>
</div>
<br><br>
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="img-box">
<img src="images/Team.jpg" alt="" style="
width: 100%;
height: 10%;">
</div>
</div>
<div class="col-md-6">
<div class="detail-box2">
<p>
Welcome to Solux, The innovative solution provider that helps student to achieve their goals and streamline their process
our team experts has a passion for delivering customized solutions that cater to ther unique needs of each client per course
At Solux, we pride ourselves on our commitment to student Satisfaction
We also work closely with our clients either online or onsite to understand their needs and provide personalized solutions that exceed their expectations.
Our team brings a wealth of expertise and experience to every assignment, CA and project, and we are always looking for new innovative ways to help students succeed
</p>
<a href="contact.html">
Contact us
</a>
</div>
</div>
</div>
</div><br><br>
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="detail-box2">
<p>
<br>
Are you tired of struggling with your assignments? Look no further than Solux!
Our innovative platform provides customized solutions to help you ace all your assignments with ease.
</p>
<a href="contact.html">
Contact us
</a>
</div>
</div>
<div class="col-md-6">
<div class="video-box" id="advert">
<br>
<iframe src="https://share.synthesia.io/embeds/videos/8733afe5-09c1-467e-b57e-195eb4dde71d?autoplay=1&loop=1" loading ="lazy" allow="encrypted-media; fullscreen;"
scrolling="no"></iframe>
</div>
</div>
</div>
</div>
</section>
<!-- end about section -->
<div class="body_bg layout_padding">
<!-- service section -->
<section class="service_section ">
<div class="container">
<div class="heading_container">
<h2>
At Your Service
</h2>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="box">
<div class="img-box">
<img src="images/s-1.png" alt="">
</div>
<h4>
Customer Satisfaction
</h4>
<p>
Our Services are Optimal and Accurate so as to satisfy the maximum client of our site
We are listening and available to all our customers
rest assure "Customer wishes is our priority"
</p>
</div>
</div>
<div class="col-md-6">
<div class="box align-items-end align-items-md-start text-right text-md-left">
<div class="img-box">
<img src="images/s-2.png" alt="">
</div>
<h4>
Fast Turnaround
</h4>
<p>
The Solutions provided from our website are sent on time for less saturation in servers
<br>also,<br>
We propose ourselve to help you submit your assignments and CAs on time so as to save student time in studies
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="box">
<div class="img-box">
<img src="images/s-3.png" alt="">
</div>
<h4>
Up to Date
</h4>
<p>
We Recieve the solutions from the Institution on real-time and we constantly update our website
so that we have recent ongoing assignments and CAs
</p>
</div>
</div>
<div class="col-md-6">
<div class="box align-items-end align-items-md-start text-right text-md-left">
<div class="img-box">
<img src="images/s-4.png" alt="">
</div>
<h4>
Premium Content
</h4>
<p>
The Design of the solutions are suited for all the students. It is made very professional and standard with all the informations
needed for the submission
</p>
</div>
</div>
</div>
</div>
</section>
<!-- end service section -->
<br><br>
<!-- quote section -->
<!-- <section class="quote_section layout_padding">
<div class="container">
<div class="box">
<div class="detail-box">
<h3>
Get your Equipments in Introduction to Networking
</h3>
<p>
Have 15% Discount on your equipments here
</p>
</div>
<div class="btn-box">
<a href="">
Book Here
</a>
</div>
</div>
<br>
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="box">
<div class="img-box">
<img class="advent" src="images/adv1.jpg" alt="" style
width="50%";
>
</div>
</div>
</div>
</div>
</section> -->
<!-- end quote section -->
<!-- sales section -->
<section class="service_section ">
<div class="container">
<div class="heading_container">
<h2>
Available Assignments and CAs
</h2>
</div>
</div>
<div class="container">
<div class="row">
<!-- <div class="col-md-6">
<div class="box align-items-end align-items-md-start text-right text-md-left">
<div class="img-box">
<img src="images/Algo2.jpg" alt="" style
width="50%";
>
</div>
<h4>
Algorithms and Data Structures 2
</h4>
<p>
<br>
Algorithms and Data Structures solutions available on our platforms <br>
This CA request the student to answer 2 questions providing the pseudo codes and the corresponding c++ program in each case <br>
<br>
Pricing : 3.000 XAF <br>
Contact us to save your solution
</p>
<a href="">
Buy
</a>
</div>
</div> -->
<!-- <div class="col-md-6">
<div class="box align-items-end align-items-md-start text-right text-md-left">
<div class="img-box">
<img src="images/WEB.jpg" alt="" style
width="50%";
>
</div>
<h4>
Web Application Development
</h4>
<p>
<br>
Web Application Development Solution Available on our platforms. <br>
This task is to modify the dating website with the DOM technique in other words changing the styling of the html with pure javascript. <br>
Princing: 2.500 XAF <br>
Contact us to save your solution
</p>
<a href="https://wa.link/b9gfdm">
Contact Us
</a>
</div>
</div> -->
<div class="col-md-6">
<div class="box align-items-end align-items-md-start text-right text-md-left">
<div class="img-box">
<img src="images/Java.jpg" alt="" style
width="50%";
>
</div>
<h4>
Java Programming 2
</h4>
<p>
<br>
Java Programming 2 Solution are Available on our platforms. <br>
This CA is to ask the student to create various projects written with Java programming language
<br>The student have to create a user interface in each given projects.
<br>
Price: 7.000 XAF <br>
</p>
<a href="https://s.htr.cm/rMR7">
Buy
</a>
</div>
</div>
</div>
</div>
<br>
<div class="btn-box">
<a href="sales.html">Read More</a>
</div>
<br>
</section>
<!-- end of sales section -->
<br>
<!-- contact section -->
<section class="contact_section">
<div class="container">
<div class="heading_container">
<h2>
Let's Get In Touch!
</h2>
</div>
</div>
<div class="container contact_bg layout_padding2-top">
<div class="row">
<div class="col-md-6">
<div class="contact_form ">
<form action="https://formspree.io/f/moqzrnlk" method="POST">
<input type="text" name="name" placeholder="Name ">
<input type="email" name="email" placeholder="Email">
<input type="text" placeholder="Message" name="message" class="message_input">
<button>
Send
</button>
</form>
</div>
</div>
<div class="col-md-6">
<div class="img-box">
<img src="images/contact-img.jpg" alt="">
</div>
</div>
</div>
</div>
</section>
<!-- end contact section -->
<!-- client section -->
<!-- <section class="client_section layout_padding-top">
<div class="d-flex justify-content-center">
<div class="heading_container">
<h2>
Testimonial
</h2>
</div>
</div>
<div class="container layout_padding2">
<div id="carouselExample2Indicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExample2Indicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExample2Indicators" data-slide-to="1"></li>
<li data-target="#carouselExample2Indicators" data-slide-to="2"></li>
<li data-target="#carouselExample2Indicators" data-slide-to="3"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item ">
<div class="client_container">
<div class="client-id">
<div class="img-box">
<img src="images/client_one.jpg" alt="" style =
"height : 50%";>
</div>
<div class="client_name">
<div>
<h3>
Donald Gabin
</h3>
<p>
Level 3, ICT University
</p>
</div>
</div>
</div>
<div class="client_detail">
<div class="client_text">
<blockquote>
<p>
Since I discovered the site "Solux" which helps me gain a lot of time in work and share useful materials for courses
it makes my studies goes easier thus having time for sharpening my personal IT Skills
</p>
</blockquote>
</div>
</div>
</div>
</div>
<div class="carousel-item active">
<div class="client_container">
<div class="client-id">
<div class="img-box">
<img src="images/client_two.jpg" alt="">
</div>
<div class="client_name">
<div>
<h3>
Stephane Behalal
</h3>
<p>
Level 3, ICT University
</p>
</div>
</div>
</div>
<div class="client_detail">
<div class="client_text">
<blockquote>
<p>
"I have been struggling with my assignments and CAs for weeks, but Solux provided me with the perfect solution. Their team was knowledgeable and professional, and they delivered the work on time. Thanks to Solux, I was able to submit my assignments and CAs with confidence and achieve good grades."
</p>
</blockquote>
</div>
</div>
</div>
</div>
<div class="carousel-item ">
<div class="client_container">
<div class="client-id">
<div class="img-box">
<img src="images/client_three.jpg" alt="" style = "
height : 50%";>
</div>
<div class="client_name">
<div>
<h3>
Meyanui Blaise
</h3>
<p>
Level 1 - Online, ICT University
</p>
</div>
</div>
</div>
<div class="client_detail">
<div class="client_text">
<blockquote>
<p>
I was impressed with the quality of work that Solux provided me with for my assignments and CAs. They were thorough, concise, and met all the requirements that were specified. The team at Solux was also very responsive and helpful in addressing any questions or concerns that I had. I would highly recommend Solux to anyone in need of assistance with their assignments and CAs.
</p>
</blockquote>
</div>
</div>
</div>
</div>
<div class="carousel-item ">
<div class="client_container">
<div class="client-id">
<div class="img-box">
<img src="images/client_four.jpg" alt="" style = "
height : 50%";>
</div>
<div class="client_name">
<div>
<h3>
Penjy Patrick
</h3>
<p>
Level 3, ICT University
</p>
</div>
</div>
</div>
<div class="client_detail">
<div class="client_text">
<blockquote>
<p>
"Thanks to Solux, I was able to complete my project on time and earn top marks. They provided me with a perfect solution that exceeded my expectations and valuable feedback that helped me understand the material better. I highly recommend their professional and reliable academic support."
</p>
</blockquote>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- end client section -->
</div>
<!-- info section -->
<section class="info_section layout_padding">
<div class="footer_contact">
<div class="heading_container">
<h2>
Contact Us
</h2>
</div>
<div class="box">
<a id="" href="https://wa.link/g181cx" class="img-box">
<img src="images/call.png" alt="" class="img-1">
<img src="images/call-o.png" alt="" class="img-2">
</a>
<a href="contact.html" class="img-box">
<img src="images/envelope.png" alt="" class="img-1">
<img src="images/envelope-o.png" alt="" class="img-2">
</a>
</div>
</div>
</section>
<!-- end info section -->
<!-- footer section -->
<section class="container-fluid footer_section">
<p>
Copyright © <span class="year"></span> All Rights Reserved By
<a href="https://novus-tech237.github.io/Novus-Main">Novus Technologies</a>
</p>
</section>
<!-- footer section -->
<script type="text/javascript" src="js/jquery-3.4.1.min.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script src="js/whatsapp.js"></script>
</body>
</html>