-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1040 lines (719 loc) · 27 KB
/
index.html
File metadata and controls
1040 lines (719 loc) · 27 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
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">
<title> AeronTech|Web developer|Brand Identity|Code Website</title>
<link rel="stylesheet" href="./assest/aerontech.css">
<link rel="shortcut icon" href="./assest/images/Aeron logo.png">
</head>
<body>
<!-- <FIRST NAVI SECTION👇> -->
<div class="Navigation-header">
<img class="logo1"
src="./assest/images/Aeron logo.png"
width="80px">
<ul>
<li id="">Home</li>
<li>About</li>
<li>Services</li>
<li #="">Contact</li>
<li>Goals</li>
</ul>
<button class="But-cont">
Let's Talk Now</button>
</div>
<!-- <SECOND-HERO SECTION👇👇>-->
<div class="Host-second">
<div class="Host-second-one">
<div class="Mobile-Navi">
<img src="./assest/images/Aeron logo.png"
width="50px">
<a href= "https://www.linkedin.com/in/ibrahim-azeez-8a25512a8">
<img src="./assest/images/meun.png"
width="40px">
</a>
</div>
<h3 class="hero-text">WE CREATE<br>
<span class="Snd-text">THE WEB</span> </h3>
<!-- <p class="Parag-text">Happiness is when
your code runs without errors.</p> -->
<p class="Parag-text">Built for change From cloud to code,
we design<br>systems that scale and evolve with you.</p>
<!-- <p class="Parag-text">A web design agency
that you need right now</p> -->
</div>
</div>
<!-- <THIRD SECTION VIEW👇👇> -->
<div class="Host-Third">
<div class="host-third-one">
<h3>
WE CREATE WHAT SPEAKS FOR YOU!
</h3>
<p>
Enhance your designs with AERON,
with powerful online design <br>
tools! From our AI Caption Generator
for compelling copy to the AI<br>
Background Remover for seamless
edits, our free graphic design<br>
software simplifies every step of
the creative process. Use the Resize<br>
Tool to tailor your designs for
multiple platforms, ensuring your<br>
visuals look perfect across social
media, print, and digital displays.<br>
The Brand Kits help you maintain a
consistent look, while the Content<br>
Planner streamlines your marketing
efforts. Whether you’re designing<br>
for business, events, or personal
projects, our intuitive tools make<br>
graphic creation fast and easy. Try
our online design tool for free<br>
today and take your visuals to the
next level.
</p>
</div>
<div class="host-third-two">
<img src="./assest/images/03.png"
width="100%" class="host-third-img">
</div>
</div>
<!-- <MOBILE THIRD SECTION👇> -->
<div class="M-third">
<h3 class="M-head">
WE CREATE WHAT SPEAKS FOR YOU!
</h3>
<p class="M-paragr">
Enhance your designs with AERON,
with powerful online design
tools! From our AI Caption Generator
for compelling copy to the AI
Background Remover for seamless
edits, our free graphic design
software simplifies every step of
the creative process. Use the Resize
Tool to tailor your designs for
multiple platforms, ensuring your
visuals look perfect across social
media, print, and digital displays.
The Brand Kits help you maintain a
consistent look, while the Content
Planner streamlines your marketing
efforts. Whether you’re designing
for business, events, or personal
projects, our intuitive tools make
graphic creation fast and easy. Try
our online design tool for free
today and take your visuals to the
next level.
</p>
</div>
<!-- <FOURTH SECTION VIEW👇> -->
<div class="Host-Fourth">
<h3 class="singleh3">
Our Creative Ideas
</h3>
<p>
Our easy-to-customize templates are
crafted by world-class<br>
designers to help create the web’s
most expressive online stores.
</p>
</div>
<!-- <FOURTH SECTION MOBILE VIEW👇> -->
<div class="M-fourth">
<img src="./assest/images/FolderCo.png"
width="10%">
<h3 class="M-single-h3">
Our Creative Ideas
</h3>
<p>
Our easy-to-customize templates are
crafted by world-class
designers to help create the web’s
most expressive online stores.
</p>
</div>
<!-- <FIVETH SECTION VIEW👇> -->
<div class="Host-Fiveth">
<div class="host-fivethchild-one">
<div class="h-fiveth-one-1">
<img class="Host-Fiveth-img"
src="./assest/images/Web1.png"
width="100%" height="100%">
</div>
<div class="h-fiveth-one-1">
<img class="Host-Fiveth-img"
src="./assest/images/Web2.png"
width="100%" height="100%">
</div>
<div class="h-fiveth-one-1">
<img class="Host-Fiveth-img"
src="./assest/images/Web 4.png"
width="100%" height="100%">
</div>
</div>
<div class="host-fivethchild-two">
<div class="h-fiveth-one-1">
<img class="Host-Fiveth-img"
src="./assest/images/Web6.jpg"
width="100%" height="100%">
</div>
<div class="h-fiveth-one-1">
<img class="Host-Fiveth-img"
src="./assest/images/3d logo.png"
width="100%" height="100%">
</div>
<div class="h-fiveth-one-1">
<img class="Host-Fiveth-img"
src="./assest/images/Web5.png"
width="100%" height="100%">
</div>
</div>
</div>
<!-- <MOBILE VIEW FIVETH SECTION👇👇> -->
<div class="M-fiveth">
<div class="M-fivethchild-one">
<div class="M-fivethchild-one-1">
<img class="M-fiveth-imgs"
src="./assest/images/Web2.png"
width="100%" height="100%">
</div>
<div class="M-fivethchild-one-1">
<img class="M-fiveth-imgs"
src="./assest/images/Web1.png"
width="100%" height="100%">
</div>
<div class="M-fivethchild-one-1">
<img class="M-fiveth-imgs"
src="./assest/images/3d logo.png"
width="100%" height="100%">
</div>
</div>
<div class="M-fivethchild-two">
<div class="M-fivethchild-one-1">
<img class="M-fiveth-imgs"
src="./assest/images/Web 4.png"
width="100%" height="100%">
</div>
<div class="M-fivethchild-one-1">
<img class="M-fiveth-imgs"
src="./assest/images/Web6.jpg"
width="100%" height="100%">
</div>
<div class="M-fivethchild-one-1">
<img class="M-fiveth-imgs"
src="./assest/images/Web5.png"
width="100%" height="100%">
</div>
</div>
</div>
<!-- <SIX SECTION VIEW👇> -->
<div class="Host-Six">
<h3>
SMALL BUSINESS
</h3>
<p>
Small business owners juggle
multiple responsibilities, and
marketing shouldn’t be an added stress.
Our platform offers a range of templates<br>
designed to help your brand stand out,
from sleek flyers to engaging promotional
videos. With our online graphic design
platform, you can craft<br>
unique branding materials that capture
your audience’s attention. Features
like the AI Image Generator and
Schedule Maker ensure your content<br>
remains fresh and consistent across
different marketing channels. Whether
you’re advertising a new service or
running a promotional sale, our free<br>
design tool makes the process seamless.
Start designing your next campaign today!
</p>
<br>
<button class="But-cont">Create a Product
Carousal
</button>
</div>
<!-- <MOBILE VIEW SIX SECTION👇👇> -->
<div class="M-Six">
<h3 class="M-head">
SMALL BUSINESS
</h3>
<p>
Small business owners juggle
multiple responsibilities, and
marketing shouldn’t be an added stress.
Our platform offers a range of templates
designed to help your brand stand out,
from sleek flyers to engaging promotional
videos. With our online graphic design
platform, you can craft
unique branding materials that capture
your audience’s attention. Features
like the AI Image Generator and
Schedule Maker ensure your content
remains fresh and consistent across
different marketing channels. Whether
you’re advertising a new service or
running a promotional sale, our free
design tool makes the process seamless.
Start designing your next campaign today!
</p>
<br>
<button class="M-button">
Product Carousal..
</button>
</div>
<!-- <SEVEN SECTION VIEW👇👇> -->
<div class="Host-Seven">
<div class="host-seven-one">
<img class="seven-image"
src="./assest/images/Sec7.jpg">
</div>
<div class="host-seven-two">
<h3>
WE Are Aeron Agency!
</h3>
<p class="Chose-text">
CHOSE THE BEST<br> COGNITIVE
ORGANIZER IN<br> THE CITY.
</p>
<button class="But-cont">
View More About Us...
</button>
</div>
</div>
<!-- <MOBILE SECTION SEVEN VIEW👇> -->
<div class="M-Seven">
<div class="M-seven-one">
<img class="Mob-imgs"
src="./assest/images/Sec7.jpg"
width="105%">
</div>
<div class="M-seven-two">
<h3 class="M-head">
We Are Aeron Agency
</h3>
<p class="M-chose">
CHOSE THE BEST<br> COGNITIVE
ORGANIZER IN<br> THE CITY.
</p>
<button class="M-button">
<a href="https://www.linkedin.com/in/ibrahim-azeez-8a25512a8">
View About Us
</a>
</button>
</div>
</div>
<!-- <SECTION EIGHT VIEW👇> -->
<div class="Host-Eight">
<div class="host-eight-one">
<h3 class="singleh3">
Our Featured Services
</h3>
<p class="Service-text">
We provide all exclusive<br>
services for clients
</p>
</div>
<div class="host-eight-two">
<div class="host-eight-one-1">
<div class="single-box-8">
<img src="./assest/images/W.D.gif"
width="30%">
<h3>Web Developing</h3>
</div>
<p>We craft tools that make tech feel<br>
effortless, intuitive, and human.
</p>
<button class="But-cont">
Learn More...
</button>
</div>
<div class="host-eight-one-1">
<div class="single-box-8">
<img src="./assest/images/G.D.gif"
width="30%">
<h3>Senior Designers</h3>
</div>
<p>We bring life into your Design<br>
by our professions.
</p>
<button class="But-cont">
Learn More...
</button>
</div>
<div class="host-eight-one-1">
<div class="single-box-8">
<img src="./assest/images/M.T.gif"
width="30%">
<h3>Marketing Globally</h3>
</div>
<p>We don't just follow trends<br>
we set them Globally.
</p>
<button class="But-cont">
Learn More...
</button>
</div>
</div>
</div>
<!-- <MOBILE VIEW SECTION EIGHT👇👇> -->
<div class="M-Eight">
<div class="M-eight-one">
<h3 class="M-h3">
Our Featured Services
</h3>
<p class="M-provide-text">
We provide all exclusive<br>
services for clients
</p>
</div>
<div class="M-eight-two">
<div class="M-eight-two-1">
<img src="./assest/images/W.D.gif"
width="30%">
<h4 class="H4-text">
Web Developing
</h4>
<p>We craft tools that make tech feel
effortless,intuitive,<br>and human.
</p>
<button class="M-button">
More..
</button>
</div>
<div class="M-eight-two-1">
<img src="./assest/images/G.D.gif"
width="30%">
<h4 class="H4-text">
Senior Designers
</h4>
<p>We bring life into your<br> Design
by our professions.
</p>
<button class="M-button">
More..
</button>
</div>
</div>
</div>
<!-- <SECTION NINE VIEW👇> -->
<div class="Host-Nine">
<div>
<h3 class="port-head-1">
Our portfolios
</h3>
<p class="port-head-2">
Some of our works
</p>
</div>
<div class="host-nine-two">
<div class="nine-two-1">
<h5>WEB DEVELOPMENT</h5>
<h5>GRAPHIC DESIGN</h5>
<h5>MARKETING</h5>
</div>
<div class="nine-two-2">
<div class="bk-image-1">
<div class="text-cont-1">
Your website promotes
<br>you 24/7👉
</div>
</div>
<div class="bk-image-2">
<div class="text-cont-2">
No employee will<br>
do that.
</div>
</div>
<div class="bk-image-3">
<div class="text-cont-3">
Good design is👉
</div>
</div>
</div>
<div class="nine-two-3">
<div class="bk-image-3-1">
<div class="text-cont-3-1">
Good business.
</div>
</div>
<div class="bk-image-3-2">
<div class="text-cont-3-2">
Ignoring online<br>marketing
is like👉
</div>
</div>
<div class="bk-image-3-3">
<div class="text-cont-3-3">
Opening a business but<br>
not telling anyone.
</div>
</div>
</div>
</div>
</div>
<!-- <MOBILE VIEW SECTION NINE👇👇> -->
<!--
<div>
DISPLAY NONE
</div>
-->
<div class="Host-Ten">
<h3 class="singleh3">
Testimonials
</h3>
<p class="h-ten-head">
Our Client's Reviews
</p>
<div class="host-ten-one">
<div class="host-ten-one-1">
<p class="ten-review-name">
Mr Azeez M.A
</p>
<img class="ten-img-resize"
src="./assest/images/St5.png">
<p>Their developers are equally
industry experts, in
graphics design<br>that gives
life. Give your projects
to them today!
</p>
</div>
<div class="host-ten-one-1">
<p class="ten-review-name">
Queen Adekemi A.
</p>
<img class="ten-img-resize"
src="./assest/images/4-1.png">
<p>We've worked with Aeron on several
projects, and they continue<br>to
exceed our expectation. Highly
recommended!
</p>
</div>
</div>
<div class="host-ten-two">
<div class="host-ten-one-1">
<p class="ten-review-name">
Dr. Oladehinde M.
</p>
<img class="ten-img-resize"
src="./assest/images/St5.png">
<p>Aeron company deliver top-tier
technology solutions. Whether it's
software or IT consulting,
they bring both creativity &
professionalism.
</p>
</div>
<div class="host-ten-one-1">
<p class="ten-review-name">
Mr Bof World F.
</p>
<img class="ten-img-resize"
src="./assest/images/St5.png">
<p>What sets Aeron company apart
is their genuine care for client
success.<br>They listen, adapt,
and go extra miles to make sure
everything works perfectly.
</p>
</div>
</div>
</div>
<!-- <MOBILE VIEW SECTION TEN👇> -->
<div class="M-Ten">
<h3 class="M-h3">
Our Client's Reviews
</h3>
<p class="M-para">"We love to hear from
our customers! if you'd<br>like to read
what others have to say or share<br>your
experience, please visit our Review Page
.<br>Your feedback helps us continue to
improve our<br> product and services. Thanks
</p>
<div class="M-review">
<button class="M-review-button">
<a href="review.html">REVIEWS ▶</a>
</button>
</div>
</div>
<!-- <SECTION ELEVEN VIEW, SOCIAL MEDIA FOOTER👇> -->
<div class="Footer-one-medias">
<p class="p-follow">FOLLOW US</p>
<div class="Social-icons">
<div>
<a href="https://www.facebook.com/azeez.ibrahimbiozeez.7">
<img class="media-cont"
src="./assest/images/F.png">
</a>
</div>
<div>
<a href="https://youtube.com/@biozeez_tech?si=t9wSb_j_v7HXGBxt">
<img class="media-cont"
src="./assest/images/Y.png">
</a>
</div>
<div>
<a href="https://x.com/Biozeez09?t=V7EqMUJSeQalDLs4ETp_6A&S=09">
<img class="media-cont"
src="./assest/images/X.png">
</a>
</div>
<div>
<a href="+2349166668701">
<img class="media-cont"
src="./assest/images/W.png">
</a>
</div>
<div>
<a href="https://www.linkedin.com/in/ibrahim-azeez-8a25512a8">
<img class="media-cont"
src="./assest/images/L.png">
</a>
</div>
<div>
<a href="https://biozeez09.github.io/aerontech/">
<img class="media-cont"
src="./assest/images/github.png">
</a>
</div>
</div>
</div>
<!-- <MOBILE SECTION ELEVEN VIEW, SOCIAL MEDIA FOOTER👇> -->
<div class="M-footer">
<p>FOLLOW US</p>
<div class="M-icons">
<a href="https://youtube.com/@biozeez_tech?si=t9wSb_j_v7HXGBxt">
<img class="M-media"
src="./assest/images/Y.png">
</a>
<a href="https://x.com/Biozeez09?t=V7EqMUJSeQalDLs4ETp_6A&S=09">
<img class="M-media"
src="./assest/images/X.png">
</a>
<a href="https://www.facebook.com/azeez.ibrahimbiozeez.7">
<img class="M-media"
src="./assest/images/F.png">
</a>
<a href="https://www.linkedin.com/in/ibrahim-azeez-8a25512a8">
<img class="M-media"
src="./assest/images/L.png">
</a>
<a href="https://biozeez09.github.io/aerontech/">
<img class="M-media"
src="./assest/images/github.png">
</a>
</div>
</div>
<!-- <MAIN FOOTER SECTION VIEW👇> -->
<div class="Main-Footer">
<div class="F-aeron">
<h4 class="F-h4">AERON INC.</h4>
<p>
We are passionate about our<br>
work. Our developer stay ahead of<br>
the curve to provide engaging and<br>
user-friendly website designs to<br>
make your business stand out. Our<br>
developers are committed to <br>
maintaining the highest web <br>
standards so that your site will<br>
withstand the test of time.
</p>
</div>
<div class="F-web-links">
<h4 class="F-h4"class="F-h4">WEBSITE LINKS</h4>
<div class="F-link">
<a href="#"><p>About Us</p></a>
<a href="#"><p>Our Services</p></a>
<a href="#"><p>Privacy & Policy</p></a>
<a href="#"><p>Explorer Point Program</p></a>
<a href="#"><p>Terms & Condition</p></a>
<a href="#"><p>Warranty</p></a>
<a href="#"><p>Product Authentication</p></a>
</div>
</div>
<div class="F-help-links">
<h4 class="F-h4">GET HELP</h4>
<div class="F-link">
<a href="#"><p>Visit Carlcare</p></a>
<a href="#"><p>Online Guide</p></a>
<a href="#"><p>Contact Us</p></a>
<a href="#"><p>+2349035114545</p></a>
<a href="#"><p>Biodzeez@gmail.com</p></a>
</div>
</div>
<div class="F-address">
<h4 class="F-h4">ADDRESS</h4>
<p>88A, Itale-papa Community,<br>
Oja-Odan, Ogun-State.
</p>
</div>
</div>
<div class="Developed">
<p>All Rights Reserved © 2025 Aeron inc,
Developed by
<a href="Biodzeez@gmail.com"><span>Bio_tech</span></a>
</p>
</div>
<!-- <MAIN FOOTER MOBILE-SECTION VIEW👇👇> -->
<div class="M-Footer">
<div class="M-aeron">
<h5 class="M-h5">AERON INC.</h5>
<p>
We are passionate about our<br>
work. Our developer stay ahead of<br>
the curve to provide engaging and<br>
user-friendly website designs to<br>
make your business stand out. Our<br>
developers are committed to <br>
maintaining the highest web <br>
standards so that your site will<br>
withstand the test of time.
</p>
</div>
<div class="M-web-link">
<h5 class="M-h5">WEBSITE LINKS</h5>
<div class="M-links">
<a href="#"><p>About Us</p></a>
<a href="#"><p>Our Services</p></a>
<a href="#"><p>Privacy & Policy</p></a>