-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1277 lines (988 loc) · 65.2 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
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
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.lineicons.com/4.0/lineicons.css" />
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="static/img/popupImg.svg" type="image/x-icon">
<title>QuantumWeb Innovations</title>
</head>
<body>
<header>
<nav class="nav2 black-bg-color" style="display: block;">
<div class="nav-container2">
<div class="nav-logo">
<a href="#" class="container white-color logo font-lg" aria-label="Home Page">
QuantumWeb Innovations
</a>
</div>
<div class="hamburger2">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
</div>
</nav>
<nav class="black-bg-color main-nav" aria-label="Main Navigation">
<div class="nav-container flex-space-between padding-left-lg margin-right-xxl">
<div class="nav-logo">
<div class="hamburger">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
<a href="#" class="container white-color logo font-lg" aria-label="Home Page">
QuantumWeb Innovations
</a>
</div>
<div class="nav-links">
<a href="#" class="nav-link white-color active" aria-label="Home">Home</a>
<a href="#" class="nav-link white-color" aria-label="About us">About us</a>
<a href="#" class="nav-link white-color" aria-label="Meet the Team">Meet the Team</a>
<a href="#" class="nav-link white-color" aria-label="Contact us">Contact us</a>
</div>
<div class="get-quote box lifted">
<div class="spinner"></div>
<div class="quote-box">
<a href="#" class="nav-link white-color bold dark-green text-upper" id="quote"
aria-label="Get a Quote">Get quote</a>
</div>
</div>
</div>
</nav>
<div class="popup ghost-white-bg-color padding-xsm">
<div class="container">
<div class="close">
<i class="fa-solid fa-x popup-close-icon" id="popup-close-icon"></i>
</div>
<div class="popup-image white-bg-color">
<img src="static/img/popupImg.svg" alt="pop image for dropdown" class="popup-img"
aria-label="popup box image" srcset="">
</div>
<div class="popup-info lavender-bg-color flex-column padding-sm">
<h1 class="center-text bold text-upper popup-info-title red"> Get Quote</h1>
<p>Hey, there!!</p>
<p> Thank you for choosing <span class="bold">QuantumWeb Innovations</span></p>
<p>
To receive a <span class="bold">customized quote </span>and explore how we can meet your needs,
please take a moment to fill out our <span class="bold">contact form</span> below.
</p>
<p>
We're eager to <span class="bold">connect with you</span>,
answer any questions you may have, and kickstart the conversation.
Your satisfaction is our priority, and we look forward to the opportunity of working together!
</p>
<p>While you here while not <span class="bold">subscribe</span> to our newsletter. We promise we
won't spam you.
</p>
<form action="" id="popup-form">
<div class="container flex-row padding-top-sm">
<input type="email" name="email" id="popup-email" aria-labelledby="popup-form"
class="padding-sm popup-input-field" placeholder="email..." required role="form">
<button type="submit" class="button-md red-bg-color white-color text-upper subscribe-btn">
<div class="spinner subscribe-spinner"></div>
Subscribe
</button>
</div>
</form>
</div>
</div>
</div>
</header>
<main>
<section class="banner flex-space-evenly margin-bottom-lg">
<div class="call-to-action flex-column text-align-left margin-top-xl">
<h1 class="font-xl bold margin-bottom-xlg agency-title logo"><span class="blue-color">Q</span>uantum
<span>W</span>eb Innovations
</h1>
<p class="dark-green bold font-lg blue-color">Elevate your digital presences with us</p>
<p class="dark-green bold font-lg blue-color">Where innovation meets design presence</p>
<div class="buttons call-to-action margin-top-sm">
<a href="#" class="button-md text-upper bold dodger-blue-bg-color color-white learn-more-btn">learn
more</a>
<a href="#" class="button-md text-upper white-bg-color bold contact-us-btn">contact us</a>
</div>
</div>
<div class="banner-container">
<img src="static/img/img2.avif"
alt="A visually appealing banner image showcasing the essence of our landing page"
class="banner-img" class="banner-img" srcset="">
</div>
</section>
<section aria-labelledby="introduction" class="introduction">
<div class="intro-container">
<h2 id="Welcome to QuantumWeb agency" class="center-text font-xl blue-color margin-top-md" >Welcome to QuantumWeb</h2>
<p class="margin-top-sm text-align-left border padding-sm white-bg-color">
<b>Pioneering Web Development, Cybersecurity, and Consulting</b><br>
<br>
<b>QuantumWeb</b>We are dedicated to transforming the digital landscape with our innovative web development, cutting-edge cybersecurity solutions, and expert consulting services. Our team of skilled professionals is committed to delivering excellence, ensuring that every project we undertake is a testament to our passion for technology and our clients' success.
<br>
<br><b>Web Development:</b> We craft bespoke websites that are not only aesthetically pleasing but also highly functional, responsive, and tailored to meet the unique needs of your business. Our approach is to blend creativity with technology to deliver web experiences that are engaging, user-friendly, and elevate your brand's digital presence.
<br>
<br><b>Cybersecurity:</b> In a world where digital threats are constantly evolving, we provide robust cybersecurity services designed to protect your online assets. Our comprehensive security strategies encompass everything from risk assessment to the implementation of advanced security measures, ensuring your data and digital infrastructure remain secure and resilient.
<br>
<br><b>Consulting:</b> Our consulting services are all about empowering your business with the right tools and strategies for growth. Whether you need guidance on digital transformation, IT infrastructure, or bespoke solutions, our experts are here to provide tailored advice that aligns with your business objectives.
</p>
</div>
</section>
<section aria-labelledby="about-team" class="margin-top-xl lavender-bg-color" id="meet-team">
<div class="about-container">
<h3 class="center-text font-xl blue-color margin-top-md">Meet Our Team</h3>
<div class="team-row">
<div class="team-member flex-column padding-sm margin-top-md border">
<img src="Images/jordan-woo.png" alt="Jordan Woo">
<h4 class="center-text text-captalize blue-color">Jordan Woo, CEO & Founder</h4>
<p class="text-left-align">Visionary leader and founder of QuantumWeb agency, Jordan brings over 20 years of experience in web development and cybersecurity...</p>
</div>
</div>
<div class="team-row">
<div class="team-member flex-column padding-sm margin-top-md border">
<img src="Images/taylor-masao.png" alt="Taylor Masao">
<h4 class="center-text text-captalize blue-color">Taylor Masao, Chief Technology Officer (CTO)</h4>
<p>Taylor, as CTO, oversees the technological direction of the agency...</p>
</div>
<div class="team-member flex-column padding-sm margin-top-md border">
<img src="Images/riley-davis.png" alt="Riley Davis">
<h4 class="center-text text-captalize blue-color">Riley Davis, Cybersecurity Director</h4>
<p class="text-left-align" >Heading our cybersecurity division, Riley specializes in risk management and data protection...</p>
</div>
</div>
<div class="team-row">
<div class="team-member flex-column padding-sm margin-top-md border">
<img src="Images/morgan-kim.png" alt="Morgan Kim">
<h4 class="center-text text-captalize blue-color">Morgan Kim, Lead Consultant</h4>
<p class="text-left-align" >Morgan is our go-to expert for client consulting. With a strong background in IT and business strategy...</p>
</div>
<div class="team-member flex-column padding-sm margin-top-md border">
<img src="Images/chris-martinez.png" alt="Chris Martinez">
<h4 class="center-text text-captalize blue-color">Chris Martinez, Senior Project Manager</h4>
<p class="text-left-align" >Chris plays a pivotal role in managing our projects, ensuring they are delivered on time and meet our high standards...</p>
</div>
<div class="team-member flex-column padding-sm margin-top-md border ">
<img src="Images/jamie-patel.png" alt="Jamie Patel">
<h4 class="center-text text-captalize blue-color">Jamie Patel, Head of Marketing</h4>
<p class="text-left-align" >Jamie leads our marketing efforts, expertly promoting our services and establishing our brand in the competitive digital landscape...</p>
</div>
</div>
</section>
<section id="testimonials" role="region" aria-labelledby="testimonials-title">
<div class="title center-text padding-top-md text-capitalize font-xl">
<h1 id="testimonials-title" class="text-capitalize">See what our clients are saying about us</h1>
</div>
<div class="intro-section center-text padding-bottom-lg">
<img src="static/img/quote-up.svg" alt="Opening quote" class="intro-quote-1">
<p>
At Quantum Web Innovations, we understand that our clients are the heartbeat of our success. That's
why we consistently go above and beyond to exceed their expectations.
</p>
<p>
Our clients' testimonials stand as a powerful testimony to our commitment to delivering exceptional
service.
</p>
<img src="static/img/quote-down.svg" alt="Closing quote" class="intro-quote-2">
</div>
<div class="container" role="region" aria-labelledby="testimony-card-title">
<div class="testimony-card testimonal-card-1">
<div class="header">
<img src="static/img/quote-img5.jpeg"
alt="Profile picture of the person providing the testimony" srcset=""
class="quote-profile-pic">
</div>
<div class="quotes">
<img src="static/img/quote-up.svg" alt="opening quote" class="quote-img quote-img-1">
<img src="static/img/quote-down.svg" alt="closing quote" class="quote-img quote-img-2">
</div>
<div class="body padding-bottom-sm" role="article" aria-labelledby="testimony-title">
<p id="testimony-title">
As a business navigating the digital landscape, cybersecurity is paramount. Quantum Web Innovations has consistently been our trusted partner, ensuring the safety and integrity of our sensitive data. Their cybersecurity solutions are not only comprehensive but also leave no room for vulnerabilities. The team's proactive approach and rapid response to emerging threats make them an invaluable asset. Highly recommended for anyone serious about safeguarding their digital assets. Quantum Web Innovations is synonymous with trust, expertise, and reliability in the ever-evolving realm of cybersecurity. A game-changer for businesses prioritizing security and digital success!
</p>
</div>
<div class="footer flex-space-between" role="contentinfo" aria-labelledby="reviewer-info">
<div class="company-name flex-column text-align-left text-upper">
<p id="reviewer-info" class="text-upper font-md">Peter Pan</p>
<p class="">CEO at Neverland</p>
</div>
<div class="review flex-row">
<img src="static/img/white-medium-star.svg" alt="5-star rating" class="rating">
<img src="static/img/white-medium-star.svg" alt="5-star rating" class="rating">
<img src="static/img/white-medium-star.svg" alt="5-star rating" class="rating">
<img src="static/img/white-medium-star.svg" alt="5-star rating" class="rating">
<img src="static/img/white-medium-star.svg" alt="5-star rating" class="rating">
</div>
</div>
</div>
<div class="testimony-card testimonal-card-2" role="article" aria-labelledby="testimony2-title">
<div class="header">
<img src="static/img/quote-img2.jpeg"
alt="Profile picture of the person providing the testimony" srcset=""
class="quote-profile-pic quote-profile-pic-2">
</div>
<div class="quotes">
<img src="static/img/quote-up.svg" alt="Opening quote" class="quote-img quote-img-1">
<img src="static/img/quote-down.svg" alt="Closing quote" class="quote-img quote-img-2">
</div>
<div class="body padding-bottom-sm" role="article" aria-labelledby="testimony2-body-title">
<p id="testimony2-body-title">
We turned to Quantum Web Innovations with complex needs for our web project, and they surpassed expectations. Their grasp of our business translated into a visually stunning, user-friendly site. What sets them apart is dual expertise in web development and cybersecurity. The outcome? A site that not only looks amazing but also prioritizes our users' data security. Huge kudos to the team for their professionalism and technical prowess. Quantum Web Innovations is a game-changer, ensuring our online presence stands out in today's tech landscape. Trustworthy, innovative, and committed – they are our go-to for digital success!
</p>
</div>
<div class="footer flex-space-between" role="contentinfo" aria-labelledby="reviewer-info-2">
<div class="company-name flex-column text-align-left text-upper">
<p id="reviewer-info-2" class="text-upper font-md">Gwen Saunders</p>
<p class="">Market Researcher</p>
</div>
<div class="review flex-row">
<img src="static/img/white-medium-star.svg" alt="5-star rating" class="rating">
<img src="static/img/white-medium-star.svg" alt="5-star rating" class="rating">
<img src="static/img/white-medium-star.svg" alt="5-star rating" class="rating">
<img src="static/img/white-medium-star.svg" alt="5-star rating" class="rating">
<img src="static/img/white-medium-star.svg" alt="5-star rating" class="rating">
</div>
</div>
</div>
<div class="testimony-card testimonal-card-3" role="article" aria-labelledby="testimony3-title">
<div class="header">
<img src="static/img/quote-img3.jpeg"
alt="Profile picture of the person providing the testimony" srcset=""
class="quote-profile-pic quote-profile-pic-3">
</div>
<div class="quotes">
<img src="static/img/quote-up.svg" alt="Opening quote" class="quote-img quote-img-1">
<!-- Content of the testimony goes here -->
<img src="static/img/quote-down.svg" alt="Closing quote" class="quote-img quote-img-2">
</div>
<div class="body padding-bottom-sm" role="article" aria-labelledby="testimony3-body-title">
<p id="testimony3-body-title">
We approached Quantum Web Innovations with a unique set of requirements for our web
development project, and they exceeded our expectations. Their ability to understand our
business needs and translate them into a visually appealing and user-friendly website was
impressive. What sets them apart is their dual expertise in web development and
cybersecurity. The result? A website that not only looks great but also ensures the security
of our users' data. Kudos to the team for their professionalism and technical prowess.
</p>
</div>
<div class="footer flex-space-between" role="contentinfo" aria-labelledby="reviewer-info-3">
<div class="company-name flex-column text-align-left text-upper">
<p id="reviewer-info-3" class="text-upper font-md">Stacy Parks</p>
<p class="">Content creator at Disney</p>
</div>
<div class="review flex-row">
<img src="static/img/white-medium-star.svg" alt="5-star rating" class="rating">
<img src="static/img/white-medium-star.svg" alt="5-star rating" class="rating">
<img src="static/img/white-medium-star.svg" alt="5-star rating" class="rating">
<img src="static/img/white-medium-star.svg" alt="5-star rating" class="rating">
<img src="static/img/white-medium-star.svg" alt="5-star rating" class="rating">
</div>
</div>
</div>
</div>
<div class="read-more center-text margin-bottom-lg margin-top-xl">
<button id="readmore-btn" class="text-upper button-lg read-more-btn" aria-label="Read more button">
<span class="spinner readmore-spinner"></span>
<a href="#" role="link color-white">Read more</a>
</button>
</div>
</section>
<figure class="quote center-text">
<blockquote class="padding-top-md padding-bottom-md" aria-labelledby="quote-text">
<p id="quote-text" class="text-capitalize bold white-color">The only limit to our realization of
tomorrow will be our doubts of today</p>
<figcaption class="font-lg bold">- Franklin D. Roosevelt</figcaption>
</blockquote>
</figure>
<!-- The contact form section -->
<section id="contact-us" aria-labelledby="contact-us-title">
<div class="container flex-row padding-top-xl" role="region" aria-labelledby="contact-us-section-title">
<div class="contact flex-column">
<div class="contact-us-title">
<h2 id="contact-us-section-title" class="font-xxl padding-bottom-md">Contact Us</h2>
</div>
<div class="contact-msg">
<p>We would love to hear from you! Please fill out the contact form below, and we'll get back to
you as soon as possible.</p>
<p class="padding-top-sm">We try to get back to you no sooner than three days</p>
</div>
</div>
<div class="contact-form margin-right-sm" role="form" aria-labelledby="contact-form-title">
<form action="" id="contact-form" class="flex-column white-bg-color" role="form"
aria-labelledby="contact-form-label">
<div class="contact-form-title center-text padding-top-md padding-bottom-md">
<h3 id="contact-form-label" class="font-lg bold text-upper">Contact Form</h3>
</div>
<div class="label flex-space-between">
<label for="contact-form-id" id="titleLabel">Title</label>
<span><img src="static/img/white-heavy-check-mark.svg" alt="" srcset=""
class="contact-label-icon title-icon"></span>
</div>
<input type="text" name="title" id="contact-form-title" required aria-label="Title">
<div class="label flex-space-between">
<label for="contact-form-email" id="emailLabel">Email</label>
<span><img src="static/img/white-heavy-check-mark.svg" alt="" srcset=""
class="contact-label-icon email-icon"></span>
</div>
<input type="email" name="email" id="contact-form-email" required aria-label="Email">
<div class="label flex-space-between">
<label for="contact-form-company" id="companyLabel">Company</label>
<span><img src="static/img/white-heavy-check-mark.svg" alt="" srcset=""
class="contact-label-icon company-icon"></span>
</div>
<input type="text" name="company" id="contact-form-company" required aria-label="Company">
<div class="label flex-space-between">
<label for="prefered-contact">Preferred contact: </label>
<span><img src="static/img/white-heavy-check-mark.svg" alt="" srcset=""
class="contact-label-icon contact-number-icon"></span>
</div>
<select name="prefered-number" id="prefered-contact" required aria-label="Preferred contact">
<option value="" selected></option>
<option value="mobile">Mobile</option>
<option value="phone">Phone</option>
</select>
<input type="text" name="prefered-number" id="contact-form-number" aria-labelledby="contactNumberLabel">
<div class="label flex-space-between">
<label for="country" id="countryLabel">Country: </label>
<span><img src="static/img/white-heavy-check-mark.svg" alt="" srcset=""
class="contact-label-icon country-icon"></span>
</div>
<select name="location" id="country" required aria-label="Country">
<option value="" selected></option>
</select>
<div class="label flex-space-between">
<label for="description">Reason for contacting us: </label>
<span><img src="static/img/white-heavy-check-mark.svg" alt="" srcset=""
class="contact-label-icon contact-us-icon"></span>
</div>
<textarea name="reason" id="description" cols="40" rows="10"
aria-label="Reason for contacting us (Minimum characters: 50)" minlength="50"
maxlength="500" required></textarea>
<div class="minimum-characters text-right-align" aria-live="polite" aria-atomic="true">
<p aria-hidden="true" class="minimum-char-string">Minimum characters to use: 50</p>
</div>
<div class="characters-remaining text-right-align" aria-live="polite" aria-atomic="true"
aria-label="Number of characters remaining: 500">
<p aria-hidden="true" class="remaining-char-string">Number of characters remaining: 500</p>
</div>
<div class="button right-align padding-top-sm">
<button type="submit" class="button-md text-upper dodger-blue-bg-color white-color
contact-submit-button"
aria-label="Submit Form">
<span class="visually-hidden">Submit Form</span>
Send
</button>
</div>
</form>
</div>
</div>
</section>
<!-- The contact form section ends here -->
<div class="quote center-text" aria-labelledby="quoteHeading">
<blockquote class="padding-top-md padding-bottom-md">
<q class="text-capitalize bold" id="quoteText">
For the past decade, we have been dedicated to crafting websites and resolving security issues.
</q>
<figcaption class="font-lg bold">- QuantumWeb Innovations</figcaption>
</blockquote>
</div>
</main>
<div class="testimonal-sidebar white-bg-color">
<div class="close-icon padding-top-sm">
<img src="static/img/window-close.svg" alt="" class="testimonal-close-icon rotateIcon" title="close me"
aria-label="Close Testimonial Sidebar">
</div>
<div class="container padding-bottom-md">
<div class="info center-text padding-top-sm padding-bottom-md">
<div class="header">
<h1 class="padding-top-xxl center-text bold">Discover What Our Clients Say</h1>
<p class="center-text bold">Join the voices of 4000 satisfied customers who have shared their
experiences with us.</p>
<p class="center-text bold">Our exceptional services have earned us a stellar rating of 4.9 out of
5.</p>
</div>
</div>
<div class="testimony-card">
<div class="header">
<img src="static/img/quote-img.jpeg" alt="Profile picture of the person providing the quote"
class="quote-profile-pic" role="img" aria-label="Profile Picture">
</div>
<div class="quotes" aria-hidden="true">
<img src="static/img/quote-up.svg" alt="" class="quote-img quote-img-1" role="presentation">
</div>
<div class="body padding-bottom-sm">
<p>
Outstanding web development services! Quantum Web Innovations transformed our online presence,
and we couldn't be happier with the results
</p>
</div>
<div class="footer flex-space-between">
<div class="company-name flex-column text-align-left text-upper">
<p class="text-upper font-md">Emma Thompson</p>
<p class="">Marketing Manager</p>
</div>
<div class="review flex-row" aria-label="Rating: 4.5 out of 5">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/star-with-right-half-black.svg" alt="Half Star" class="rating">
</div>
</div>
</div>
<div class="testimony-card">
<div class="header" role="img" aria-label="Client Profile Picture">
<img src="static/img/quote-img4.jpeg" alt="Client Profile Picture" class="quote-profile-pic">
</div>
<div class="quotes" role="img" aria-label="Quotation Mark">
<img src="static/img/quote-up.svg" alt="Quotation Mark" class="quote-img quote-img-1">
</div>
<div class="body padding-bottom-sm" role="region" aria-labelledby="testimonialBodyLabel">
<h2 id="testimonialBodyLabel" class="visually-hidden">Testimonial Body</h2>
<p>
Top-notch cybersecurity expertise! Quantum Web Innovations provided robust security solutions
that gave us confidence in our digital operations.
</p>
</div>
<div class="footer flex-space-between" role="contentinfo" aria-labelledby="testimonialFooterLabel">
<h2 id="testimonialFooterLabel" class="visually-hidden">Testimonial Footer</h2>
<div class="company-name flex-column text-align-left text-upper">
<p class="text-upper font-md">Ethan Reynolds</p>
<p class="">IT Director</p>
</div>
<div class="review flex-row" aria-hidden="true">
<img src="static/img/white-medium-star.svg" alt="" clas="rating">
<img src="static/img/white-medium-star.svg" alt="" clas="rating">
<img src="static/img/white-medium-star.svg" alt="" clas="rating">
<img src="static/img/white-medium-star.svg" alt="" clas="rating">
<img src="static/img/white-medium-star.svg" alt="" clas="rating">
</div>
</div>
</div>
<div class="testimony-card">
<div class="header" role="img" aria-labelledby="profilePicLabel">
<h2 id="profilePicLabel" class="visually-hidden">Profile Picture</h2>
<img src="static/img/quote-img8.jpeg" alt="" srcset="" class="quote-profile-pic">
</div>
<div class="quotes" role="img" aria-labelledby="quotesLabel">
<h2 id="quotesLabel" class="visually-hidden">Quotes</h2>
<img src="static/img/quote-up.svg" alt="" class="quote-img quote-img-1">
</div>
<div class="body padding-bottom-sm" role="region" aria-labelledby="testimonialBodyLabel">
<h2 id="testimonialBodyLabel" class="visually-hidden">Testimonial Body</h2>
<p>
Exceptional service! The team at Quantum Web Innovations goes above and beyond to understand and
meet our unique web development needs.
</p>
</div>
<div class="footer flex-space-between" role="contentinfo" aria-labelledby="testimonialFooterLabel">
<h2 id="testimonialFooterLabel" class="visually-hidden">Testimonial Footer</h2>
<div class="company-name flex-column text-align-left text-upper">
<p class="text-upper font-md">Oli Carter</p>
<p class="">CEO</p>
</div>
<div class="review flex-row">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
</div>
</div>
</div>
<div class="testimony-card">
<div class="header" role="img" aria-labelledby="testimonialHeaderLabel">
<h2 id="testimonialHeaderLabel" class="visually-hidden">Testimonial Header</h2>
<img src="static/img/quote-img7.jpeg" alt="Client Profile Picture" srcset=""
class="quote-profile-pic">
</div>
<div class="quotes" role="img" aria-labelledby="testimonialQuotesLabel">
<h2 id="testimonialQuotesLabel" class="visually-hidden">Testimonial Quotes</h2>
<img src="static/img/quote-up.svg" alt="Quote Up" class="quote-img quote-img-1">
</div>
<div class="body padding-bottom-sm" role="article" aria-labelledby="testimonialBodyLabel">
<h2 id="testimonialBodyLabel" class="visually-hidden">Testimonial Body</h2>
<p>
Efficient and reliable! Quantum Web Innovations delivered a sleek and responsive website that
exceeded our expectations
</p>
</div>
<div class="footer flex-space-between" role="contentinfo" aria-labelledby="testimonialFooterLabel">
<h2 id="testimonialFooterLabel" class="visually-hidden">Testimonial Footer</h2>
<div class="company-name flex-column text-align-left text-upper">
<p class="text-upper font-md">Lily Walker</p>
<p class="">Creative Director</p>
</div>
<div class="review flex-row" aria-labelledby="ratingLabel">
<h3 id="ratingLabel" class="visually-hidden">Rating</h3>
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
</div>
</div>
</div>
<div class="testimony-card">
<div class="header">
<img src="static/img/quote-img6.jpeg" alt="Profile Picture" class="quote-profile-pic"
aria-hidden="true">
</div>
<div class="quotes">
<img src="static/img/quote-up.svg" alt="Quotation Start" class="quote-img quote-img-1"
aria-hidden="true">
</div>
<div class="body padding-bottom-sm">
<div role="region" aria-label="Testimonial Body">
<p>
Cybersecurity excellence! As a financial institution, security is our top priority, and
Quantum Web Innovations consistently provides cutting-edge solutions
</p>
</div>
</div>
<div class="footer flex-space-between">
<div class="company-name flex-column text-align-left text-upper">
<p class="text-upper font-md">Ava Martinez</p>
<p class="">Chief Information Officer</p>
</div>
<div class="review flex-row" role="img" aria-label="Rating: 5 out of 5">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
</div>
</div>
</div>
<div class="testimony-card">
<div class="header" role="img" aria-label="Profile Picture">
<img src="static/img/quote-img12.jpeg" alt="" srcset="" class="quote-profile-pic">
</div>
<div class="quotes" role="img" aria-label="Quotation Marks">
<img src="static/img/quote-up.svg" alt="" class="quote-img quote-img-1">
</div>
<div class="body padding-bottom-sm" role="region" aria-label="Customer Testimonial">
<p>
Tailored solutions! Quantum Web Innovations took the time to understand our business, resulting
in a website that perfectly aligns with our brand.
</p>
</div>
<div class="footer flex-space-between" role="contentinfo" aria-label="Customer Review">
<div class="company-name flex-column text-align-left text-upper">
<p class="text-upper font-md">Noah Simmons</p>
<p class="">Small Business Owner</p>
</div>
<div class="review flex-row" role="img" aria-label="Rating: 5 out of 5">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
</div>
</div>
</div>
<div class="testimony-card">
<div class="header">
<img src="static/img/quote-img11.jpeg" alt="Profile Picture" aria-hidden="true"
class="quote-profile-pic">
</div>
<div class="quotes">
<img src="static/img/quote-up.svg" alt="Quotation Mark Up" aria-hidden="true"
class="quote-img quote-img-1">
</div>
<div class="body padding-bottom-sm">
<p id="testimonialContent">
Responsive and professional! The Quantum Web Innovations team was a pleasure to work with,
delivering on time and exceeding our expectations.
</p>
</div>
<div class="footer flex-space-between">
<div class="company-name flex-column text-align-left text-upper">
<p class="text-upper font-md">Sophia Lewis</p>
<p class="">Project Manager</p>
</div>
<div class="review flex-row" role="img" aria-label="Rating: 5 out of 5">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
</div>
</div>
</div>
<div class="testimony-card">
<div class="header">
<img src="static/img/quote-img10.jpeg" alt="User Profile Picture" aria-hidden="true"
class="quote-profile-pic">
</div>
<div class="quotes">
<img src="static/img/quote-up.svg" alt="Quotation Mark Up" aria-hidden="true"
class="quote-img quote-img-1">
</div>
<div class="body padding-bottom-sm">
<p>
Innovative web design! Quantum Web Innovations brought creativity and flair to our website,
making it a standout in our industry.
</p>
</div>
<div class="footer flex-space-between">
<div class="company-name flex-column text-align-left text-upper">
<p class="text-upper font-md">Jacky Turner</p>
<p class="">UX/UI Designer</p>
</div>
<div class="review flex-row" aria-label="Rating: 5 out of 5">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
</div>
</div>
</div>
<div class="testimony-card">
<div class="header" aria-hidden="true">
<img src="static/img/quote-img9.jpeg" alt="Client Profile Picture" srcset=""
class="quote-profile-pic">
</div>
<div class="quotes" aria-hidden="true">
<img src="static/img/quote-up.svg" alt="Quotation Mark" class="quote-img quote-img-1">
</div>
<div class="body padding-bottom-sm" aria-hidden="true">
<p>
Reliable cybersecurity partner! Quantum Web Innovations' proactive approach to security has
safeguarded our data and earned our trust
</p>
</div>
<div class="footer flex-space-between" aria-hidden="true">
<div class="company-name flex-column text-align-left text-upper" aria-hidden="true">
<p class="text-upper font-md" aria-hidden="true">Grant Saunders</p>
<p class="" aria-hidden="true">Operation Manager</p>
</div>
<div class="review flex-row" aria-hidden="true">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
</div>
</div>
</div>
<div class="testimony-card">
<div class="header" aria-hidden="true">
<img src="static/img/quote-img14.jpeg" alt="Client Profile Picture" srcset=""
class="quote-profile-pic">
</div>
<div class="quotes" aria-hidden="true">
<img src="static/img/quote-up.svg" alt="Quotation Mark" class="quote-img quote-img-1">
</div>
<div class="body padding-bottom-sm">
<p>
Seamless collaboration! Quantum Web Innovations seamlessly integrated our ideas into the
website, creating a platform that truly represents our brand
</p>
</div>
<div class="footer flex-space-between">
<div class="company-name flex-column text-align-left text-upper" aria-hidden="true">
<p class="text-upper font-md">Horia Jadeson</p>
<p class="" aria-hidden="true">Head Hunter</p>
</div>
<div class="review flex-row" aria-hidden="true">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Star" class="rating">
</div>
</div>
</div>
<div class="testimony-card">
<div class="header" aria-hidden="true">
<img src="static/img/quote-img15.jpeg" alt="Profile Picture" srcset="" class="quote-profile-pic">
</div>
<div class="quotes" aria-hidden="true">
<img src="static/img/quote-up.svg" alt="Quotation Mark Up" class="quote-img quote-img-1">
</div>
<div class="body padding-bottom-sm">
<p>
Quantum Web Innovations has truly been a dream come true for me. As a headhunter in a dynamic
and fast-paced business, each day presents a new challenge – I can almost describe it as
fighting monsters daily.
Before working with Quantum Web Innovations, I struggled to provide my clients with a reliable
way to reach me while on the road. However, thanks to their expertise, they created a website
that not only captures the essence of my work but also serves as a valuable platform for my
clients to easily connect with me
</p>
</div>
<div class="footer flex-space-between" aria-hidden="true">
<div class="company-name flex-column text-align-left text-upper">
<p class="text-upper font-md">Dean Winchester</p>
<p class="" aria-hidden="true">Freelancer Head hunter @ Supernatural</p>
</div>
<div class="review flex-row" aria-hidden="true">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
</div>
</div>
</div>
<div class="testimony-card">
<div class="header" aria-hidden="true">
<img src="static/img/quote-img16.jpeg" alt="Profile Picture" srcset="" class="quote-profile-pic">
</div>
<div class="quotes" aria-hidden="true">
<img src="static/img/quote-up.svg" alt="Quotation Mark Up" class="quote-img quote-img-1">
</div>
<div class="body padding-bottom-sm">
<p>
My job involves two things: travel and assistance. As the world has evolved into a technological
era, I needed a way for those seeking my help to find me. This is where QuantumWeb Innovations
stepped in—they provided a seamless solution, integrated my design, and created a beautiful,
pleasing website with the security to match.
</p>
</div>
<div class="footer flex-space-between" aria-hidden="true">
<div class="company-name flex-column text-align-left text-upper">
<p class="text-upper font-md">Rufus</p>
<p class="" aria-hidden="true">Freelance Head Hunter @ Supernatural</p>
</div>
<div class="review flex-row" aria-hidden="true">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
<img src="static/img/white-medium-star.svg" alt="Rating Star" class="rating">
</div>
</div>
</div>
</div>
<div class="counter center-text padding-bottom-sm">
<p class="bold">page 25 of 100</p>
</div>
<div class="pagination flex-row padding-bottom-md flex-center margin-bottom-lg" aria-label="Pagination">
<a href="#" aria-label="Page 1">Previous</a>
<a href="#" aria-label="Page 2">2</a>