-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
703 lines (346 loc) · 22.1 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>2050</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300&family=Tiro+Telugu&display=swap" rel="stylesheet">
</head>
<body class="body">
<!-- navbar -->
<div class="container">
<nav class="navbar navbar-expand-lg bg-light">
<div class="container-fluid">
<a class="navbar-brand active fw-bold" href="#">HOME</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-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">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link navbar fw-bold" aria-current="page" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link navbar fw-bold" aria-current="page" href="#">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link navbar fw-bold" href="#">Products</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle navbar fw-bold" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Team
</a>
<li class="nav-item">
<a class="nav-link fw-bold navbar" aria-current="page" href="#">contact</a>
</li>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="#">Another action</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">Something else here</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link navbar fw-bold">Disabled</a>
</li>
</ul>
<form class="d-flex" role="search">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form>
</div>
</div>
</nav>
</div>
<!-- end navbar -->
<!-- banner siction -->
<div class=" container ">
<div class="row">
<div class="contact col-lg-6 wow slideInLeft data-wow-duration='2s' data-wow-delay='2s' ">
<h2 class="world mt-5 mb-3 ms-5">World Class Application</h2>
<h1 class="font ms-5">Solution For Your Busniss</h1>
<h4 class="ms-5"><p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Rerum beatae, sequi incidunt eaque voluptate nesciunt corporis qui nulla vel illo reiciendis ipsam? Aliquid ut deserunt aperiam incidunt quos nesciunt quam.</p></h4>
<button type="button" class="btn btn- ms-5 mt-3 ms-5">Full Store</button>
</div>
<div class="col-lg-6 mt-5 wow slideInRight data-wow-duration=2 data-wow-delay=2 ">
<img class="mt-5 "src="3-img2.png" alt="">
</div>
</div>
</div>
<!-- end banner -->
<!-- new saction -->
<div class="container mb-5">
<div class="row">
<div class="mb-5 col-lg-6 margintob ">
<h3 class="mykeep">Features</h3>
<h1 class="m-b-1">Top Features that Keep Us Ahed</h1>
<h4 class="tembor-about">Phasellus seiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam
</h4>
</div>
<div class="mt-5 pt-5 col-lg-6 wow slideInRight data-wow-duration=2 data-wow-delay=2 ">
<div>
<img class="img-about" src="slider3-img.png" alt="">
</div>
</div>
</div>
</div>
<!-- end saction -->
<!-- service-->
<div style="background-color: aliceblue;" class="container mt-5">
<div class="row pt-5">
<div class="col-lg-6 mr-100">
<h2 class="aslan">Service</h2>
<h1 class=" aslan mb-5">Industry Standard Service</h1>
<div class="row">
<div class="col-lg-6">
<div>
<span class="icons-div">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-receipt-cutoff" viewBox="0 0 16 16">
<path d="M3 4.5a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5zm0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5zm0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5zm0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5zm0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5zM11.5 4a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1zm0 2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1zm0 2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1zm0 2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1zm0 2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1z"/>
<path d="M2.354.646a.5.5 0 0 0-.801.13l-.5 1A.5.5 0 0 0 1 2v13H.5a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1H15V2a.5.5 0 0 0-.053-.224l-.5-1a.5.5 0 0 0-.8-.13L13 1.293l-.646-.647a.5.5 0 0 0-.708 0L11 1.293l-.646-.647a.5.5 0 0 0-.708 0L9 1.293 8.354.646a.5.5 0 0 0-.708 0L7 1.293 6.354.646a.5.5 0 0 0-.708 0L5 1.293 4.354.646a.5.5 0 0 0-.708 0L3 1.293 2.354.646zm-.217 1.198.51.51a.5.5 0 0 0 .707 0L4 1.707l.646.647a.5.5 0 0 0 .708 0L6 1.707l.646.647a.5.5 0 0 0 .708 0L8 1.707l.646.647a.5.5 0 0 0 .708 0L10 1.707l.646.647a.5.5 0 0 0 .708 0L12 1.707l.646.647a.5.5 0 0 0 .708 0l.509-.51.137.274V15H2V2.118l.137-.274z"/>
</svg>
</span>
<h6 class="fw-bold- fs-4 mt-5">Web Solutions</h6>
<p class="Digital mb-5">Dunt ut labore et dolore ma gna aliquaim ad minim</p>
</div>
</div>
<div class="col-lg-6">
<div>
<span class="icons-div">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-wallet" viewBox="0 0 16 16">
<path d="M0 3a2 2 0 0 1 2-2h13.5a.5.5 0 0 1 0 1H15v2a1 1 0 0 1 1 1v8.5a1.5 1.5 0 0 1-1.5 1.5h-12A2.5 2.5 0 0 1 0 12.5V3zm1 1.732V12.5A1.5 1.5 0 0 0 2.5 14h12a.5.5 0 0 0 .5-.5V5H2a1.99 1.99 0 0 1-1-.268zM1 3a1 1 0 0 0 1 1h12V2H2a1 1 0 0 0-1 1z"/>
</svg>
</span>
<h6 class="fw-bold- fs-4 mt-5">Mobile Application</h6>
<p class="dolor-dolor mb-5">Dunt ut labore et dolore ma gna aliquaim ad minim</p>
</div>
</div>
<div class="col-lg-6">
<div>
<span class="icons-div">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-water" viewBox="0 0 16 16">
<path d="M.036 3.314a.5.5 0 0 1 .65-.278l1.757.703a1.5 1.5 0 0 0 1.114 0l1.014-.406a2.5 2.5 0 0 1 1.857 0l1.015.406a1.5 1.5 0 0 0 1.114 0l1.014-.406a2.5 2.5 0 0 1 1.857 0l1.015.406a1.5 1.5 0 0 0 1.114 0l1.757-.703a.5.5 0 1 1 .372.928l-1.758.703a2.5 2.5 0 0 1-1.857 0l-1.014-.406a1.5 1.5 0 0 0-1.114 0l-1.015.406a2.5 2.5 0 0 1-1.857 0l-1.014-.406a1.5 1.5 0 0 0-1.114 0l-1.015.406a2.5 2.5 0 0 1-1.857 0L.314 3.964a.5.5 0 0 1-.278-.65zm0 3a.5.5 0 0 1 .65-.278l1.757.703a1.5 1.5 0 0 0 1.114 0l1.014-.406a2.5 2.5 0 0 1 1.857 0l1.015.406a1.5 1.5 0 0 0 1.114 0l1.014-.406a2.5 2.5 0 0 1 1.857 0l1.015.406a1.5 1.5 0 0 0 1.114 0l1.757-.703a.5.5 0 1 1 .372.928l-1.758.703a2.5 2.5 0 0 1-1.857 0l-1.014-.406a1.5 1.5 0 0 0-1.114 0l-1.015.406a2.5 2.5 0 0 1-1.857 0l-1.014-.406a1.5 1.5 0 0 0-1.114 0l-1.015.406a2.5 2.5 0 0 1-1.857 0L.314 6.964a.5.5 0 0 1-.278-.65zm0 3a.5.5 0 0 1 .65-.278l1.757.703a1.5 1.5 0 0 0 1.114 0l1.014-.406a2.5 2.5 0 0 1 1.857 0l1.015.406a1.5 1.5 0 0 0 1.114 0l1.014-.406a2.5 2.5 0 0 1 1.857 0l1.015.406a1.5 1.5 0 0 0 1.114 0l1.757-.703a.5.5 0 1 1 .372.928l-1.758.703a2.5 2.5 0 0 1-1.857 0l-1.014-.406a1.5 1.5 0 0 0-1.114 0l-1.015.406a2.5 2.5 0 0 1-1.857 0l-1.014-.406a1.5 1.5 0 0 0-1.114 0l-1.015.406a2.5 2.5 0 0 1-1.857 0L.314 9.964a.5.5 0 0 1-.278-.65zm0 3a.5.5 0 0 1 .65-.278l1.757.703a1.5 1.5 0 0 0 1.114 0l1.014-.406a2.5 2.5 0 0 1 1.857 0l1.015.406a1.5 1.5 0 0 0 1.114 0l1.014-.406a2.5 2.5 0 0 1 1.857 0l1.015.406a1.5 1.5 0 0 0 1.114 0l1.757-.703a.5.5 0 1 1 .372.928l-1.758.703a2.5 2.5 0 0 1-1.857 0l-1.014-.406a1.5 1.5 0 0 0-1.114 0l-1.015.406a2.5 2.5 0 0 1-1.857 0l-1.014-.406a1.5 1.5 0 0 0-1.114 0l-1.015.406a2.5 2.5 0 0 1-1.857 0l-1.757-.703a.5.5 0 0 1-.278-.65z"/>
</svg>
</span>
<h6 class="fw-bold- fs-4 mt-5">Digital Marketing</h6>
<p class="dolor-dolor mb-5">Dunt ut labore et dolore ma gna aliquaim ad minim</p>
</div>
</div>
<div class="col-lg-6">
<div>
<span class="icons-div">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-map" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M15.817.113A.5.5 0 0 1 16 .5v14a.5.5 0 0 1-.402.49l-5 1a.502.502 0 0 1-.196 0L5.5 15.01l-4.902.98A.5.5 0 0 1 0 15.5v-14a.5.5 0 0 1 .402-.49l5-1a.5.5 0 0 1 .196 0L10.5.99l4.902-.98a.5.5 0 0 1 .415.103zM10 1.91l-4-.8v12.98l4 .8V1.91zm1 12.98 4-.8V1.11l-4 .8v12.98zm-6-.8V1.11l-4 .8v12.98l4-.8z"/>
</svg>
</span>
<h6 class="fw-bold- fs-4 mt-5">Consultancy</h6>
<p class="dolor-dolor mb-5">Dunt ut labore et dolore ma gna aliquaim ad minim</p>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class=" wow animate fadeInUp ">
<div class="my-class " style="">
<img class="icons-div " src="service-img.png" alt="">
</div>
</div>
</div>
</div>
<!-- end service -->
<!-- NEWS -->
<div class="container mb-5">
<div class="row justify-content-center">
<span class="col-lg-4 text-center">
<span class="">
<h4 style="color: #6c63ff">Latest News</h4>
<h2 class="fw-bolder mb-22">Form Our Blog</h2>
<p class="secoundary-color2">
<span>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea</span>
</p>
</span>
</span>
</div>
</div>
<div class="myform container">
<div class="row justify-content-center">
<div class="col-lg-3">
<div class="card zoom-in" style="width: 18rem;">
<img src="imgg.jpeg" class="card-img-top w-100" alt="...">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="card zoom-in" style="width: 18rem;">
<img src="blog-img1.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
<div
class="col-lg-3">
<div class="card zoom-in" style="width: 18rem;">
<img src="images.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
</div>
</div>
<!-- why choose us-->
<div class="container">
<div class="row">
<div class="col-lg-6 feature wow slideInLeft data-wow-duration='10s' data-wow-delay='10s' ">
<img src="feature-img.png" alt="">
</div>
<div class="col-lg-6 ms-5 mt-5">
<h3 class="aslan ms-5 ">Why Choose Us</h3>
<h2 class="ms-5 me-5 fs-1">Never compromise with Quality</h2>
<ul class="style-us">
<li class="">
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" fill="currentColor" class="bi bi-check2 " viewBox="0 0 16 16">
<path d="M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z"/>
</svg>
</span>
<p class="d-inline-block">Dunt ut labore et dolore ma gna aliquaim ad minim vul koreo amare ki mone pore na ami todiba.</p>
</li>
<ul class="style-us">
<li class="">
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" fill="currentColor" class="bi bi-check2 " viewBox="0 0 16 16">
<path d="M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z"/>
</svg>
</span>
<p class="d-inline-block">Dunt ut labore et dolore ma gna aliquaim ad minim vul koreo amare ki mone pore na ami todiba.</p>
</li>
<ul class="style-us">
<li class="">
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" fill="currentColor" class="bi bi-check2 " viewBox="0 0 16 16">
<path d="M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z"/>
</svg>
</span>
<p class="d-inline-block">Dunt ut labore et dolore ma gna aliquaim ad minim vul koreo amare ki mone pore na ami todiba.</p>
</li>
</ul>
</div>
</div>
</div>
<!--END why choose us-->
<div style="background-color:#f5f5fa " class="container m-b-5">
<div class="row m-t-5">
<div class="col-lg-12 text-center">
<h4 class="mt" style="color: #6c63ff">Our Product</h4>
<h2 class="m-b-5 fw-700">We Develope Amazing Products</h2>
</div>
</div>
</div>
<div style="background-color: #f5f5fa" class="container wow animate bounceInUp ">
<div class="row">
<div class=" col-lg-4 p-t-5 text-center">
<div style="background-color:#FFFFFF " class="mt-2 mx-4">
<h5 class="mt-3 mb-5">Custom CMS</h5>
<img class="pb-5" src="product-icon1.png" alt="">
<p>Ovitae purus sodaDuis eu eros auctor augue ultricies bibend um. Phasellus semattis</p>
<a style="color: rgb(7, 7, 7)" class="" href=""> View Details</a>
</div>
</div>
<div class=" col-lg-4 p-t-5 text-center">
<div style="background-color:#FFFFFF" class="mt-2 mx-4">
<h5 class="mt-3 mb-5">Blogging Tool</h5>
<img class="pb-5" src="product-icon2.png" png" alt="">
<p>Ovitae purus sodaDuis eu eros auctor augue ultricies bibend um. Phasellus semattis</p>
<a style="color: rgb(7, 7, 7)" class="" href=""> View Details</a>
</div>
</div>
<div class=" col-lg-4 p-t-5 text-center">
<div style="background-color:#FFFFFF" class="mt-2 mx-4">
<h5 class="mt-3 mb-5">Photo Editor</h5>
<img class="pb-5" src="product-icon3.png" alt="">
<p>Ovitae purus sodaDuis eu eros auctor augue ultricies bibend um. Phasellus semattis</p>
<a style="color: rgb(7, 7, 7)" class="" href=""> View Details</a>
</div>
</div>
</div>
</div>
<div style="background-color: #f5f5fa" class="container wow animate bounceInUp ">
<div class="row">
<div class=" col-lg-4 mb-5 text-center">
<div style="background-color:#FFFFFF" class="mt-2 mx-4">
<h5 class="mt-3 mb-5">Accounting App</h5>
<img class="pb-5" src="product-icon6.png" alt="">
<p>Ovitae purus sodaDuis eu eros auctor augue ultricies bibend um. Phasellus semattis</p>
<a style="color: rgb(7, 7, 7)" class="" href=""> View Details</a>
</div>
</div>
<div class=" col-lg-4 mb-5 text-center">
<div style="background-color:#FFFFFF" class="mt-2 mx-4">
<h5 class="mt-3 mb-5">Keyword Tool</h5>
<img class="pb-5" src="product-icon5.png" alt="">
<p>Ovitae purus sodaDuis eu eros auctor augue ultricies bibend um. Phasellus semattis</p>
<a style="color: rgb(7, 7, 7)" class="" href=""> View Details</a>
</div>
</div>
<div class=" col-lg-4 mb-5 text-center">
<div style="background-color:#FFFFFF" class="mt-2 mx-4">
<h5 class="mt-3 mb-5">Social Media Tool</h5>
<img class="pb-5" src="product-icon4.png" alt="">
<p>Ovitae purus sodaDuis eu eros auctor augue ultricies bibend um. Phasellus semattis</p>
<a style="color: rgb(7, 7, 7)" class="" href=""> View Details</a>
</div>
</div>
</div>
</div>
<div class="container mt-5 f-1000">
<div class="row">
<div class="col-lg-6">
<h4 class="f-001">Features</h4>
<h2 class="f-002">Top Features that Keep Us Ahed</h2>
<p class="f-003">Phasellus seiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam</p>
<div class="f-007">
<h3>Developer Friendly Design</h3>
<p class="f-006">Phasellus seiusmod tempor incididunt ut labore et dolore magna aliqu ad minim veniam</p>
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" fill="currentColor" class="f-008 bi bi-lightbulb" viewBox="0 0 16 16">
<path d="M2 6a6 6 0 1 1 10.174 4.31c-.203.196-.359.4-.453.619l-.762 1.769A.5.5 0 0 1 10.5 13a.5.5 0 0 1 0 1 .5.5 0 0 1 0 1l-.224.447a1 1 0 0 1-.894.553H6.618a1 1 0 0 1-.894-.553L5.5 15a.5.5 0 0 1 0-1 .5.5 0 0 1 0-1 .5.5 0 0 1-.46-.302l-.761-1.77a1.964 1.964 0 0 0-.453-.618A5.984 5.984 0 0 1 2 6zm6-5a5 5 0 0 0-3.479 8.592c.263.254.514.564.676.941L5.83 12h4.342l.632-1.467c.162-.377.413-.687.676-.941A5 5 0 0 0 8 1z"/>
</svg>
</span>
</div>
<div class="f-007">
<h3>Developer Friendly Design</h3>
<p class="f-006">Phasellus seiusmod tempor incididunt ut labore et dolore magna aliqu ad minim veniam</p>
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" fill="currentColor" class="f-008 bi bi-lightbulb" viewBox="0 0 16 16">
<path d="M2 6a6 6 0 1 1 10.174 4.31c-.203.196-.359.4-.453.619l-.762 1.769A.5.5 0 0 1 10.5 13a.5.5 0 0 1 0 1 .5.5 0 0 1 0 1l-.224.447a1 1 0 0 1-.894.553H6.618a1 1 0 0 1-.894-.553L5.5 15a.5.5 0 0 1 0-1 .5.5 0 0 1 0-1 .5.5 0 0 1-.46-.302l-.761-1.77a1.964 1.964 0 0 0-.453-.618A5.984 5.984 0 0 1 2 6zm6-5a5 5 0 0 0-3.479 8.592c.263.254.514.564.676.941L5.83 12h4.342l.632-1.467c.162-.377.413-.687.676-.941A5 5 0 0 0 8 1z"/>
</svg>
</span>
</div>
</div>
<div class="col-lg-6 wow slideInRight data-wow-duration=2 data-wow-delay=2 ">
<img class="f-004" src="feature2-img.png" alt="">
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8" crossorigin="anonymous"></script>
<script src="js/wow.js"></script>
<script>
new WOW().init();
</script>
</body>
</html>