-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
940 lines (917 loc) · 42.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
<!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://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./styles.css" />
<title>Know Sagar</title>
</head>
<body>
<nav class="navbar navbar-expand-lg bg-color py-5 pt-lg-5">
<div class="container">
<a class="navbar-brand text-white" href="https://www.linkedin.com/in/sagar-mondal-a78720223/" target="_blank">Sagar Mondal</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 ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active text-white" aria-current="page" href="#"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#online-section">Service</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<section class="bg-main bg-color hero-section">
<div class="container ">
<div class="row mb-5">
<div
class=" aboutme mt-5 mt-lg-0 text-lg-start order-1 col-12 col-md-12 col-lg-6 d-flex flex-column justify-content-center align-content-start"
>
<h1 class="text-capitalize fw-bolder text-white">
I Collect High Quality Leads
</h1>
<p class="mt-3 mb-5 para-width text-light-grey" id="about">
Currently a third year student in the Computer Science and
Engineering department at VIT Chennai, I am a lifelong learner who
enjoys exploring new technologies and ideas. As of right now, I am
interested in competitive programming, as well as exploring the
fields of AI/ML and web development. I am always seeking
opportunities to apply my skills and expand my knowledge with my
passion for creative work and innovation. While pursuing my
B.Tech, I am eager to find new opportunities to grow and learn in
the field of computer science. It will be a pleasure to network
with professionals in the industry and explore ways in which I can
contribute to the development of innovative solutions.
</p>
<div class="text-center w-100 text-md-start">
<button
class="text-capitalize btn btn-primary px-5 py-2"
data-bs-toggle="tooltip"
data-bs-title="Contact Sagar"
>
contact me
</button>
</div>
</div>
<div class="col-12 col-md-12 col-lg-6 order-lg-1 order-0 ">
<div class="text-center text-lg-end">
<video
src="./images/hero.mp4"
class="hero-video--section"
loop
muted
autoplay
>
Your browser does not support the video
</video>
</div>
</div>
</div>
</div>
<div class="custom-shape-divider-bottom-1694268979 ">
<svg
data-name="Layer 1"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 1200 120"
preserveAspectRatio="none"
>
<path
d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z"
class="shape-fill"
></path>
</svg>
</div>
</section>
<section class="service-section">
<div class="container text-center common-title fw-bold">
<h2 class="common-heading">
What Sagar Will Do For <br />
Your Business
</h2>
<hr class="w-25 mx-auto" />
</div>
<div class="container mt-5">
<div class="row g-5">
<div class="col-12 col-lg-4 col-md-12">
<div class="card-box rounded-2 p-5 text-center">
<img
src="./images/link.gif"
alt="link"
class="img-fluid"
width="200px"
/>
<h5>Link Building</h5>
<p class="mb-5">With my link building service, I specialize in enhancing your website's online presence and search engine ranking. I employ strategic outreach, content creation, and partnership-building techniques to secure high-quality backlinks from authoritative websites. My goal is to boost your website's credibility and visibility, ultimately driving organic traffic and improving your online success.</p>
<div class="d-flex justify-content-center align-items-center">
<a
href="#service"
class="icon-span rounded-circle d-flex justify-content-center align-items-center"
><i class="fa-solid fa-arrow-right"></i
></a>
</div>
</div>
</div>
<div class="col-12 col-lg-4 col-md-12">
<div class="card-box rounded-2 p-5 text-center shadow">
<img
src="./images/speaker.gif"
alt="link"
class="img-fluid"
width="200px"
/>
<h5>Content Marketing</h5>
<p class="mb-5">With my content marketing service, I focus on creating and distributing valuable, relevant, and engaging content that resonates with your target audience. Through strategic planning and execution, I aim to build brand authority, drive organic traffic, and foster customer engagement. Let me help you craft compelling narratives and meaningful connections to enhance your online presence and achieve your business goals.</p>
<div class="d-flex justify-content-center align-items-center">
<a
href="#service"
class="icon-span rounded-circle d-flex justify-content-center align-items-center"
><i class="fa-solid fa-arrow-right"></i
></a>
</div>
</div>
</div>
<div class="col-12 col-lg-4 col-md-12">
<div class="card-box rounded-2 p-5 text-center">
<img
src="./images/seo.gif"
alt="link"
class="img-fluid"
width="200px"
/>
<h5>On Page SEO</h5>
<p class="mb-5">With my On-Page SEO service, I specialize in optimizing your website's individual pages to maximize their visibility in search engine results. I meticulously analyze and enhance elements such as meta tags, keyword placement, content structure, and user experience. The goal is to improve your website's rankings, user engagement, and overall online performance, ensuring it meets the highest SEO standards.</p>
<div class="d-flex justify-content-center align-items-center">
<a
href="#service"
class="icon-span rounded-circle d-flex justify-content-center align-items-center"
><i class="fa-solid fa-arrow-right"></i
></a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="bg-color more-info-section">
<div class="container">
<div class="row">
<div class="col-12 col-md-12 col-lg-6 img-section">
<figure>
<img
src="./images/phone.gif"
alt="digital products"
class="img-fluid"
/>
</figure>
</div>
<div
class="col-12 col-md-12 col-lg-6 d-flex flex-column justify-content-center align-content-start"
>
<h2 class="text-capitalize fw-bolder text-white">
Steps to Build a <br />
Successful Digital Product
</h2>
<p class="mt-3 mb-5 para-width text-light-grey">
I understand that building a successful digital product is a multifaceted process that demands careful planning and execution. I follow a proven approach to help you achieve your digital product goals. First, I start by defining a clear and compelling vision for your project, ensuring it aligns with your business objectives and market needs. Then, I conduct thorough research to understand your target audience and their pain points, laying the foundation for a user-centric design. With a well-crafted plan in place, I move on to development, selecting the latest technologies and tools to bring your vision to life. Rigorous testing and iterative refinement are at the core of my development process, guaranteeing a polished and bug-free product. After launch, my commitment to your success continues with ongoing monitoring and user feedback, allowing me to make data-driven improvements. I also offer strategic marketing and engagement services to ensure your digital product reaches its intended audience and continues to grow. Partner with me to turn your digital product dreams into reality.
</p>
<div class="text-center w-100 text-md-start">
<button
class="text-capitalize btn btn-primary px-5 py-2"
data-bs-toggle="tooltip"
data-bs-title="Contact Sagar"
>
contact me
</button>
</div>
</div>
</div>
</div>
</section>
<section class="common-section business-section" id="online-section">
<div class="container text-center common-title fw-bold">
<h2 class="common-heading">
Generating New Customers Via <br />
Online Mode
</h2>
<hr class="w-25 mx-auto" />
</div>
<div class="container">
<div class="row">
<div class="col-12 col-md-12 col-lg-6">
<div class="d-flex px-3 py-5 shadow">
<img
class="d-md-block d-none img-fluid mx-3"
src="./images/Website Ads (AI style).png"
alt="phone"
width="150px"
/>
<div>
<p class="mb-3 fw-bolder">Social Media Advertising</p>
<p>
Reach a wider audience by creating engaging ads on platforms
like Facebook, Instagram and LinkedIn. Target specific
demographics to connect with potential Customersinterested in
your services.
</p>
</div>
</div>
</div>
<div class="col-12 col-md-12 col-lg-6">
<div class="d-flex px-3 py-5 shadow">
<img
class="d-md-block d-none img-fluid mx-3"
src="./images/Male Influencer (AI style).png"
alt="phone"
width="150px"
/>
<div>
<p class="mb-3 fw-bolder">Influencer Marketing</p>
<p>
Partner with influential individuals or bloggers in your
industry to tap into their audience. Through sponsored posts
or endorsements. You can generate interest and attract new
customers to your online channels.
</p>
</div>
</div>
</div>
<div class="col-12 col-md-12 col-lg-6">
<div class="d-flex px-3 py-5 shadow">
<img
class="d-md-block d-none img-fluid mx-3"
src="./images/Target Marketing.png"
alt="phone"
width="150px"
/>
<div>
<p class="mb-3 fw-bolder">Content Marketing</p>
<p>
Publish valuable and optimized content on your website's blog.
Attract organic traffic. Position your brand as an authority
and encourage visitors to engage and make a purchase.
</p>
</div>
</div>
</div>
<div class="col-12 col-md-12 col-lg-6">
<div class="d-flex px-3 py-5 shadow">
<img
class="d-md-block d-none img-fluid mx-3"
src="./images/Mobile Marketing.png"
alt="phone"
width="150px"
/>
<div>
<p class="mb-3 fw-bolder">Referral Programs</p>
<p>
Implement a customer referral program. Incentivize existing
customers to refer others with rewards like discounts or
loyalty points. Word-of-mouth marketing helps acquire new
customers.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="common-section mb-5 pt-5 bg-color">
<div class="container text-center common-title">
<h2 class="common-heading text-white">What Client Say<br />About Me</h2>
<hr class="w-25 mx-auto" />
</div>
<div class="container">
<div
class="carousel slide"
data-bs-ride="true"
id="carouselExampleIndicators"
>
<div class="carousel-indicators">
<button
aria-current="true"
aria-label="Slide 1"
class="active"
data-bs-slide-to="0"
data-bs-target="#carouselExampleIndicators"
type="button"
></button>
<button
aria-label="Slide 2"
data-bs-slide-to="1"
data-bs-target="#carouselExampleIndicators"
type="button"
></button>
<button
aria-label="Slide 3"
data-bs-slide-to="2"
data-bs-target="#carouselExampleIndicators"
type="button"
></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<div class="row g-5">
<div class="col-xxl-4">
<div class="d-flex justify-content-center align-items-center">
<div class="card p-3" style="width: 18rem">
<img
alt="..."
class="card-img-top"
src="./images/aayush.jpg"
/>
<div class="card-body text-center">
<p class="card-title mb-3">Ayush Yadav</p>
<p class="card-text">"I can't express how satisfied I am with the web development services provided. The attention to detail and dedication to delivering a user-friendly, responsive website were exceptional. My online presence has seen a significant boost, and the seamless user experience has garnered positive feedback from clients. I highly recommend your web development expertise!"
</p>
<div class="mt-3 d-flex justify-content-center">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="far fa-star"></i>
</div>
</div>
</div>
</div>
</div>
<div class="col-xxl-4">
<div class="d-flex justify-content-center align-items-center">
<div class="card p-3" style="width: 18rem">
<img
alt="..."
class="card-img-top"
src="./images/himanshu.jpg"
/>
<div class="card-body text-center">
<p class="card-title mb-3">Himanshu Pandey</p>
<p class="card-text">"Working with you on my website was an absolute pleasure. Your expertise in web development shone through in every aspect of the project. From conceptualizing the design to implementing complex functionalities, your meticulous approach resulted in a site that perfectly represents my brand."
</p>
<div class="mt-3 d-flex justify-content-center">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
</div>
</div>
</div>
</div>
</div>
<div class="col-xxl-4">
<div class="d-flex justify-content-center align-items-center">
<div class="card p-3" style="width: 18rem">
<img
alt="..."
class="card-img-top"
src="./images/saurabh.jpg"
/>
<div class="card-body text-center">
<p class="card-title mb-3">Saurabh Kumar</p>
<p class="card-text">"I had a vision for my website, and you turned it into a reality beyond my expectations. Your web development skills transformed my online presence, making it not only visually stunning but also highly functional. The user interface is intuitive, and the site's performance has been outstanding."
</p>
<div class="mt-3 d-flex justify-content-center">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="far fa-star"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row g-5">
<div class="col-xxl-4">
<div class="d-flex justify-content-center align-items-center">
<div class="card p-3" style="width: 18rem">
<img
alt="..."
class="card-img-top"
src="./images/aayush.jpg"
/>
<div class="card-body text-center">
<p class="card-title mb-3">Ayush Yadav</p>
<p class="card-text">"I can't express how satisfied I am with the web development services provided. The attention to detail and dedication to delivering a user-friendly, responsive website were exceptional. My online presence has seen a significant boost, and the seamless user experience has garnered positive feedback from clients. I highly recommend your web development expertise!"
</p>
<div class="mt-3 d-flex justify-content-center">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="far fa-star"></i>
</div>
</div>
</div>
</div>
</div>
<div class="col-xxl-4">
<div class="d-flex justify-content-center align-items-center">
<div class="card p-3" style="width: 18rem">
<img
alt="..."
class="card-img-top"
src="./images/himanshu.jpg"
/>
<div class="card-body text-center">
<p class="card-title mb-3">Himanshu Pandey</p>
<p class="card-text">"Working with you on my website was an absolute pleasure. Your expertise in web development shone through in every aspect of the project. From conceptualizing the design to implementing complex functionalities, your meticulous approach resulted in a site that perfectly represents my brand."
</p>
<div class="mt-3 d-flex justify-content-center">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
</div>
</div>
</div>
</div>
</div>
<div class="col-xxl-4">
<div class="d-flex justify-content-center align-items-center">
<div class="card p-3" style="width: 18rem">
<img
alt="..."
class="card-img-top"
src="./images/saurabh.jpg"
/>
<div class="card-body text-center">
<p class="card-title mb-3">Saurabh Kumar</p>
<p class="card-text">"I had a vision for my website, and you turned it into a reality beyond my expectations. Your web development skills transformed my online presence, making it not only visually stunning but also highly functional. The user interface is intuitive, and the site's performance has been outstanding."
</p>
<div class="mt-3 d-flex justify-content-center">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="far fa-star"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row g-5">
<div class="col-xxl-4">
<div class="d-flex justify-content-center align-items-center">
<div class="card p-3" style="width: 18rem">
<img
alt="..."
class="card-img-top"
src="./images/aayush.jpg"
/>
<div class="card-body text-center">
<p class="card-title mb-3">Ayush Yadav</p>
<p class="card-text">"I can't express how satisfied I am with the web development services provided. The attention to detail and dedication to delivering a user-friendly, responsive website were exceptional. My online presence has seen a significant boost, and the seamless user experience has garnered positive feedback from clients. I highly recommend your web development expertise!"
</p>
<div class="mt-3 d-flex justify-content-center">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="far fa-star"></i>
</div>
</div>
</div>
</div>
</div>
<div class="col-xxl-4">
<div class="d-flex justify-content-center align-items-center">
<div class="card p-3" style="width: 18rem">
<img
alt="..."
class="card-img-top"
src="./images/himanshu.jpg"
/>
<div class="card-body text-center">
<p class="card-title mb-3">Himanshu Pandey</p>
<p class="card-text">"Working with you on my website was an absolute pleasure. Your expertise in web development shone through in every aspect of the project. From conceptualizing the design to implementing complex functionalities, your meticulous approach resulted in a site that perfectly represents my brand."
</p>
<div class="d-flex justify-content-center">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
</div>
</div>
</div>
</div>
</div>
<div class="col-xxl-4">
<div class="d-flex justify-content-center align-items-center">
<div class="card p-3" style="width: 18rem">
<img
alt="..."
class="card-img-top"
src="./images/saurabh.jpg"
/>
<div class="card-body text-center">
<p class="card-title mb-3">Saurabh Kumar</p>
<p class="card-text">"I had a vision for my website, and you turned it into a reality beyond my expectations. Your web development skills transformed my online presence, making it not only visually stunning but also highly functional. The user interface is intuitive, and the site's performance has been outstanding."
</p>
<div class="d-flex justify-content-center">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="far fa-star"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<button
class="carousel-control-prev"
data-bs-slide="prev"
data-bs-target="#carouselExampleIndicators"
type="button"
>
<span aria-hidden="true" class="carousel-control-prev-icon"></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
data-bs-slide="next"
data-bs-target="#carouselExampleIndicators"
type="button"
>
<span aria-hidden="true" class="carousel-control-next-icon"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</section>
<section class="common-section blog-section">
<div class="common-heading container text-center common-title">
<h2 class="common-heading">Tips and Tricks From <br />Sagar</h2>
<hr class="w-25 mx-auto" />
</div>
<div class="container my-5">
<div class="row g-5">
<div class="col-xl-3 col-md-6 col-12">
<div class="d-flex justify-content-center align-items-center">
<div class="card" style="width: 18rem">
<img
alt="development"
class="card-img-top"
src="./images/Programming.png"
/>
<div class="card-body">
<div class="d-flex justify-content-between">
<p class="small text-grey">
<i class="fa-solid fa-book-open-reader"></i> : 5000
</p>
<p class="small text-grey">September 10, 2023</p>
</div>
<h5 class="card-title mt-3">Web Development</h5>
<p class="card-text mt-2 mb-3">Explore collection of web development tips and tricks, including how to optimize website speed using techniques like image compression and code minification.
</p>
<a class="px-4 py-2 btn btn-dark" href="https://www.imperva.com/learn/performance/minification/#:~:text=Minification%20is%20the%20process%20of,into%20a%20better%20user%20experience." target="_blank">Read More</a>
</div>
</div>
</div>
</div>
<div class="col-xl-3 col-md-6 col-12">
<div class="d-flex justify-content-center align-items-center">
<div class="card" style="width: 18rem">
<img
alt="freelance"
class="card-img-top"
src="./images/Study Desk.png"
/>
<div class="card-body">
<div class="d-flex justify-content-between">
<p class="small text-grey">
<i class="fa-solid fa-book-open-reader"></i> : 5000
</p>
<p class="small text-grey">September 10, 2023</p>
</div>
<h5 class="mt-3 card-title">Freelancing</h5>
<p class="card-text mt-2 mb-3">Discover valuable insights for freelancers, such as negotiating better rates with clients and managing your freelance finances effectively.
</p>
<a class="px-4 py-2 btn btn-dark" href="https://bloggingwizard.com/manage-money-freelancer/" target="_blank">Read More</a>
</div>
</div>
</div>
</div>
<div class="col-xl-3 col-md-6 col-12">
<div class="d-flex justify-content-center align-items-center">
<div class="card" style="width: 18rem">
<img
alt="graphic"
class="card-img-top"
src="./images/Graphic Tablet Drawing.png"
/>
<div class="card-body">
<div class="d-flex justify-content-between">
<p class="small text-grey">
<i class="fa-solid fa-book-open-reader"></i> : 5000
</p>
<p class="small text-grey">September 10, 2023</p>
</div>
<h5 class="mt-3 card-title">Graphic Designer</h5>
<p class="card-text mt-2 mb-3">Uncover creative graphic design hacks like using layer blending modes and mastering typography to elevate your design projects.
</p>
<a class="px-4 py-2 btn btn-dark" href="https://helpx.adobe.com/in/photoshop/using/blending-modes.html" target="_blank">Read More</a>
</div>
</div>
</div>
</div>
<div class="col-xl-3 col-md-6 col-12">
<div class="d-flex justify-content-center align-items-center">
<div class="card" style="width: 18rem">
<img
alt="Wordpress"
class="card-img-top"
src="./images/Computer Teacher.png"
/>
<div class="card-body">
<div class="d-flex justify-content-between">
<p class="small text-grey">
<i class="fa-solid fa-book-open-reader"></i> : 5000
</p>
<p class="small text-grey">September 10, 2023</p>
</div>
<h5 class="mt-3 card-title">Wordpress Developer</h5>
<p class="card-text mt-2 mb-3">Dive into WordPress development secrets, including customizing themes with CSS tricks and optimizing your WordPress site for SEO.
</p>
<a class="px-4 py-2 btn btn-dark" href="https://key2blogging.com/css-tricks-for-wordpress-customization/" target="_blank">Read More</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="common-section bg-color contact-section text-white pt-5">
<div class="custom-shape-divider-top-1684211116" id="contact">
<svg
data-name="Layer 1"
preserveAspectRatio="none"
viewBox="0 0 1200 120"
xmlns="http://www.w3.org/2000/svg"
>
<path
class="shape-fill"
d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z"
></path>
</svg>
</div>
<div class="container text-center fw-bold common-title">
<h2 class="common-heading text-white">Contact Me</h2>
<hr class="w-25 mx-auto" />
</div>
<div class="container">
<div class="form-section mx-auto">
<form>
<div class="mb-3">
<div class="row">
<div class="col-lg-6 col-12">
<label class="form-label" for="first-name">First name</label>
<input
class="form-control"
id="first-name"
placeholder="First name"
aria-label="First name"
type="text"
required
/>
</div>
<div class="col-lg-6 col-12">
<label for="last-name" class="form-label">Last name</label>
<input
type="text"
class="form-control"
id="last-name"
placeholder="Last name"
aria-label="Last name"
required
/>
</div>
</div>
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label"
>Email address</label
>
<input
type="email"
class="form-control"
id="exampleInputEmail1"
required
placeholder="Enter your email"
aria-describedby="emailHelp"
required
/>
<div id="emailHelp" class="form-text text-white">
We'll never share your email with anyone else.
</div>
</div>
<div class="mb-3">
<label for="exampleFormControlTextarea1" class="form-label"
>Your message</label
>
<textarea
class="form-control"
id="exampleFormControlTextarea1"
required
placeholder="Enter your message "
rows="3"
></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</section>
<footer class="main-footer-section bg-color">
<div class="contact-details">
<div class="container px-5">
<div class="row g-0">
<div class="col-lg-4">
<div
class="contact-div p-5 d-flex flex-column justify-content-center align-items-center"
>
<a href="tel:8777038834">
<div
class="icon-div d-flex justify-content-center align-items-center rounded-circle mb-3"
>
<img src="./images/Call.png" alt="call" class="img-fluid" />
</div>
<p class="text-white">+91 8777038834</p>
</a>
</div>
</div>
<div class="col-lg-4">
<div class="contact-div p-5 d-flex flex-column justify-content-center align-items-center"
>
<div
class="icon-div d-flex justify-content-center align-items-center rounded-circle mb-3"
>
<a href = "mailto: [email protected]">
<img
src="./images/Email (AI style).png"
alt="email"
class="img-fluid"
/>
</div>
<p class="text-white">[email protected]</p>
</div>
</a>
</div>
<div class="col-lg-4">
<div class="contact-div p-5 d-flex flex-column justify-content-center align-items-center"
>
<div
class="icon-div d-flex justify-content-center align-items-center rounded-circle mb-3"
>
<a href="https://www.google.com/maps/place/kolkata/data=!4m2!3m1!1s0x39f882db4908f667:0x43e330e68f6c2cbc?sa=X&ved=2ahUKEwit0ZXur5-BAxXcTGwGHTE_D_MQ8gF6BAgQEAA&ved=2ahUKEwit0ZXur5-BAxXcTGwGHTE_D_MQ8gF6BAgUEAE" target="_blank">
<img
src="./images/map.gif"
alt="GIF Image"
class="img-fluid"
/>
</div>
<p class="text-white">Kolkata, India</p>
</a>
</div>
</div>
</div>
</div>
<div class="footer-section py-5 text-white">
<div class="container">
<div class="row">
<div class="col-lg-9 col-md-6 col-6">
<div class="footer-links">
<h4 class="text-white mt-5 mb-3">About</h4>
<ul
class="text-light-grey list-unstyled d-flex flex-column gap-2"
>
<li><a href="https://iothincvitc.hashnode.dev/internet-iomt" target="_blank">Blog</a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="footer-links">
<h4 class="mt-5 mb-3 text-white">Subscribe</h4>
<div class="input-group mb-3 ">
<input
type="text"
class="form-control"
placeholder="Recipient's username"
aria-label="Recipient's username"
aria-describedby="basic-addon2"
/>
<span
class="input-group-text btn btn-primary"
id="basic-addon2"
>Subscribe</span
>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<hr class="container mx-auto" />
<div class="row">
<div class="col-lg-8 col-12">
Copyright ©2023 All rights reserved. | This website was created by
<span class="bg-theme"><a href="https://www.linkedin.com/in/sagar-mondal-a78720223/" target="_blank">Sagar Mondal</a></span>
</div>
<div class="col-md-4 col-12">
<div
class="d-flex justify-content-center justify-content-lg-end gap-5 mt-lg-0 mt-3"
>
<a
href="https://www.instagram.com/phenomenalsagar/"
target="_blank"
>
<div
class="icon-span d-flex justify-content-center align-items-center rounded-circle mb-3"
>
<i class="fa-brands fa-instagram"></i>
</div>
</a>
<a href="tel:8777038834">
<div
class="icon-span d-flex justify-content-center align-items-center rounded-circle mb-3"
>
<i class="fa-brands fa-whatsapp"></i>
</div>
</a>
<a href="https://twitter.com/SagarMo72479330" target="_blank">
<div
class="icon-span d-flex justify-content-center align-items-center rounded-circle mb-3"
>
<i class="fa-brands fa-twitter"></i>
</div>
</a>
<a href="https://www.linkedin.com/in/sagar-mondal-a78720223/" target="_blank">
<div
class="icon-span d-flex justify-content-center align-items-center rounded-circle mb-3"
>
<i class="fa-brands fa-linkedin"></i>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</footer>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm"
crossorigin="anonymous"
></script>
<script>
const tooltipTriggerList = document.querySelectorAll(
'[data-bs-toggle="tooltip"]'
);
const tooltipList = [...tooltipTriggerList].map(
(tooltipTriggerEl) => new bootstrap.Tooltip(tooltipTriggerEl)
);
</script>
</body>
</html>