-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1112 lines (1092 loc) · 51.4 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, maximum-scale=1, minimum-scale=1,min-width=1024">
<title></title>
<link rel="icon" type="image/png" href="images/favicon.png">
<link rel="stylesheet" href="css/font-awesome-pro.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/scroll_button.css">
<link rel="stylesheet" href="css/spacing.css">
<link rel="stylesheet" href="css/plugin.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body class="home_2">
<!--================================
PRELOADER START
=================================-->
<div class="preloader">
<svg viewBox="0 0 1000 1000" preserveAspectRatio="none">
<path id="svg" d="M0,1005S175,995,500,995s500,5,500,5V0H0Z"></path>
</svg>
<h5 class="preloader-text">Loading</h5>
</div>
<!--================================
PRELOADER END
=================================-->
<!--================================
SCROLL BUTTON END
=================================-->
<nav class="main_menu_2">
<span class="menu_2_icon">
<i class="fa-light fa-bars bar_icon-staggered bar_icon"></i>
<i class="fa-light fa-xmark close_icon"></i>
</span>
<a class="logo_2" href="index_2.html">
<img src="images/logo.png" alt="VINAY`" class="img-fluid w-100">
</a>
<ul id="list-example" class="list-group">
<li>
<a class="list-group-item list-group-item-action text_hover_animaiton" href="#banner">
<span
><img
src="svg/home-2.svg"
alt="icon"
class="img-fluid w-100 svg"></span
>Home
</a>
</li>
<li>
<a class="list-group-item list-group-item-action text_hover_animaiton" href="#about">
<span
><img
src="svg/clipboard.svg"
alt="icon"
class="img-fluid w-100 svg"></span
>About Me
</a>
</li>
<li>
<a class="list-group-item list-group-item-action text_hover_animaiton" href="#service">
<span
><img
src="svg/briefcase.svg"
alt="icon"
class="img-fluid w-100 svg"></span>
Service
</a>
</li>
<li>
<a class="list-group-item list-group-item-action text_hover_animaiton" href="#skills">
<span
><img src="svg/path.svg" alt="icon" class="img-fluid w-100 svg"></span>
skills
</a>
</li>
<li>
<a class="list-group-item list-group-item-action text_hover_animaiton" href="#portfolio">
<span
><img
src="svg/messages-1.svg"
alt="icon"
class="img-fluid w-100 svg"></span>
<!--- portfolio
</a>
</li>
<li>
<a class="list-group-item list-group-item-action text_hover_animaiton" href="#blog">
<span
><img
src="svg/quote-down-square.svg"
alt="icon"
class="img-fluid w-100 svg"></span>
blog
</a>
</li>
<li>
<a class="list-group-item list-group-item-action text_hover_animaiton" href="#contact">
<span
><img
src="svg/user-square.svg"
alt="icon"
class="img-fluid w-100 svg"></span> -->
Contact
</a>
</li>
</ul>
</nav>
<!--================================
SCROLL BUTTON END
=================================-->
<div class="main">
<div data-bs-spy="scroll" data-bs-target="#list-example" data-bs-smooth-scroll="true" class="scrollspy-example" tabindex="0">
<!--================================
BANNER 2 START
=================================-->
<section id="banner" class="tf__banner_2 banner" style="background: url(images/bg/bgm1.svg)">
<div class="container">
<div class="row justify-content-between">
<div class="col-xxl-6 col-md-9 col-lg-7">
<div class="tf__banner_text">
<h1>
Hi, I'm VINAY! Creative
<span class="cd-headline rotate-1">
<!-- ANIMATE TEXT VALUES: zoom, rotate-1, letters type, letters rotate-2, loading-bar, slide, clip, letters rotate-3, letters scale, push, -->
<span class="cd-words-wrapper">
<b class="is-visible">Editor</b>
<b>Coder</b>
<b>Student</b>
</span>
</h1>
<p>
Aspiring engineer dedicated to learning and innovation.
Currently pursuing a degree in engineering with a passion for problem-solving and design. Eager to apply classroom knowledge to real-world challenges. Seeking opportunities to connect with like-minded professionals and gain valuable insights in the field. Open to internships and networking.
Let's connect and explore the possibilities!
</p>
<ul>
<li>
<a class="common_btn" href="images/resume.pdf">Download Cv
<i class="fa-solid fa-arrow-down-to-line"></i></a>
</li>
<li>
<a class="banner_video_btn play_btn" href="https://www.youtube.com/watch?v=B-ytMSuwbf8"><i class="fa-sharp fa-solid fa-circle-play"></i> Watch
the Video</a
>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!--================================
BANNER 2 END
=================================-->
<!--================================
ABOUT 2 START
=================================-->
<section id="about" class="tf__about_2 pt_130 xs_pt_80">
<div class="container">
<div class="row">
<div class="col-xl-9 col-lg-9">
<div class="tf__section_heading mb_40">
<h5 class="has-animation">ABOUT Me</h5>
<h2 class="has-animation">
Crafting stories through design and innovation
</h2>
</div>
</div>
</div>
<div class="row justify-content-between">
<div class="col-xl-6 col-lg-6">
<div class="tf__about_text_2">
<ul>
<li>
<div class="top fade_bottom" data-trigerId="about">
<div class="img">
<img
src="images/icon/about_1.png"
alt="about"
class="img-fluid w-100">
</div>
<div>
<h3>My Ambition</h3>
<p>
Nemo enim ipsam voluptatem quia voluptas sit
aspernatur aut odit aut fugit sed thisnquia
consequuntur magni dolores eos qui ratione
voluptatem sequi nesciunt. Neque porro quisquam est,
qui dolorem ipsum quia dolor sit amet
</p>
</div>
</div>
</li>
<li>
<div class="top fade_bottom" data-trigerId="about">
<div class="img">
<img
src="images/icon/about_2.png"
alt="about"
class="img-fluid w-100">
</div>
<div>
<h3>My Purpose</h3>
<p>
Nemo enim ipsam voluptatem quia voluptas sit
aspernatur aut odit aut fugit sed thisnquia
consequuntur magni dolores eos qui ratione
voluptatem sequi nesciunt. Neque porro quisquam est,
qui dolorem ipsum quia dolor sit amet
</p>
</div>
</div>
</li>
</ul>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<div class="tf__about_img tf__about_img_2">
<img
src="images/ma.jpg"
alt="VINAY"
class="img-fluid w-100">
<div class="tf__about_img_text">
<i class="fa-sharp fa-solid fa-award"></i>
<!--<h4> <span>Years Of Experience</span></h4>-->
</div>
</div>
</div>
</div>
</div>
</section>
<!--================================
ABOUT 2 END
=================================-->
<!--================================
SERVICE 2 START
=================================-->
<section id="service" class="tf__service_2 pt_130 xs_pt_80 animation">
<div class="container">
<div class="row">
<div class="col-xl-9 col-lg-9 m-auto">
<div class="tf__section_heading mb_40">
<h5 class="has-animation">MY serivce</h5>
<h2 class="has-animation">
Bringing your vision to life with precision and passion
</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-4 col-md-6 col-lg-4">
<div
class="tf__single_service_2 fade_left"
data-trigerId="service"
>
<div class="text">
<span>
<img
src="svg/mobile-programming.svg"
alt="service"
class="img-fluid w-100 svg">
<i class="icon-app-development"></i>
</span>
<h3>Website Design</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore
</p>
</div>
<a href="#">Read More</a>
</div>
</div>
<div class="col-xl-4 col-md-6 col-lg-4">
<div class="tf__single_service_2 fade_left active" data-trigerId="service">
<div class="text">
<span>
<img
src="svg/pen-tool-2.svg"
alt="service"
class="img-fluid w-100 svg">
</span>
<h3>Logo Design</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore
</p>
</div>
<a href="#">Read More</a>
</div>
</div>
<div class="col-xl-4 col-md-6 col-lg-4">
<div class="tf__single_service_2 fade_left" data-trigerId="service">
<div class="text">
<span>
<img
src="svg/mobile.svg"
alt="service"
class="img-fluid w-100 svg">
</span>
<h3>Coding</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore
</p>
</div>
<a href="#">Read More</a>
</div>
</div>
</div>
</div>
</section>
<!--================================
SERVICE 2 END
=================================-->
<!--================================
SKILLS 2 START
=================================-->
<section id="skills" class="tf__skills_2 pt_115 xs_pt_75 pb_120 xs_pb_80 mt_165 xs_mt_80">
<div>
<div class="container">
<div class="row">
<div class="col-xl-9 col-lg-9 m-auto">
<div class="tf__section_heading mb_30">
<h5 class="has-animation">MY Skills</h5>
<h2 class="has-animation">
Crafting Stories through Design and Imagination
</h2>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xxl-8 col-xl-10 m-auto">
<ul class="nav nav-pills mb_30" id="pills-tab" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link active" id="pills-home-tab" data-bs-toggle="pill" data-bs-target="#pills-home" type="button" role="tab" aria-controls="pills-home" aria-selected="true" href="">
Download Cv <i class="fa-solid fa-arrow-down-to-line"></i>
</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="pills-profile-tab" data-bs-toggle="pill" data-bs-target="#pills-profile" type="button" role="tab" aria-controls="pills-profile" aria-selected="false">
Education
</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="pills-contact-tab" data-bs-toggle="pill" data-bs-target="#pills-contact" type="button" role="tab" aria-controls="pills-contact" aria-selected="false">
Certifications
</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="pills-disabled-tab" data-bs-toggle="pill" data-bs-target="#pills-disabled" type="button" role="tab" aria-controls="pills-disabled" aria-selected="false">
Clubs
</button>
</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="tab-content" id="pills-tabContent">
<div
class="tab-pane fade show active"
id="pills-home"
role="tabpanel"
aria-labelledby="pills-home-tab"
tabindex="0"
>
<div class="row">
<div class="col-xl-6 col-lg-6">
<div
class="tf__single_skill_2 fade_bottom"
data-trigerId="skills"
>
<h3>C</h3>
<div class="tf__team_skills_bar_single">
<p>Performance</p>
<div id="bar1" class="barfiller">
<div class="tipWrap">
<span class="tip"></span>
</div>
<span class="fill" data-percentage="80"></span>
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<div
class="tf__single_skill_2 fade_bottom"
data-trigerId="skills"
>
<h3>Python</h3>
<div class="tf__team_skills_bar_single">
<p>Performance</p>
<div id="bar2" class="barfiller">
<div class="tipWrap">
<span class="tip1"></span>
</div>
<span class="fill" data-percentage="90"></span>
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<div
class="tf__single_skill_2 fade_bottom"
data-trigerId="skills"
>
<h3>R</h3>
<div class="tf__team_skills_bar_single">
<p>Performance</p>
<div id="bar3" class="barfiller">
<div class="tipWrap">
<span class="tip"></span>
</div>
<span class="fill" data-percentage="75"></span>
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<div
class="tf__single_skill_2 fade_bottom"
data-trigerId="skills"
>
<h3>HTML</h3>
<div class="tf__team_skills_bar_single">
<p>Performance</p>
<div id="bar4" class="barfiller">
<div class="tipWrap">
<span class="tip"></span>
</div>
<span class="fill" data-percentage="70"></span>
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<div
class="tf__single_skill_2 fade_bottom"
data-trigerId="skills"
>
<h3>CSS</h3>
<div class="tf__team_skills_bar_single">
<p>Performance</p>
<div id="bar4" class="barfiller">
<div class="tipWrap">
<span class="tip"></span>
</div>
<span class="fill" data-percentage="70"></span>
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<div
class="tf__single_skill_2 fade_bottom"
data-trigerId="skills"
>
<h3>Data Structure using C</h3>
<div class="tf__team_skills_bar_single">
<p>Performance</p>
<div id="bar4" class="barfiller">
<div class="tipWrap">
<span class="tip"></span>
</div>
<span class="fill" data-percentage="10"></span>
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<div
class="tf__single_skill_2 fade_bottom"
data-trigerId="skills"
>
<h3>Microsoft Office</h3>
<div class="tf__team_skills_bar_single">
<p>Performance</p>
<div id="bar4" class="barfiller">
<div class="tipWrap">
<span class="tip"></span>
</div>
<span class="fill" data-percentage="70"></span>
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<div
class="tf__single_skill_2 fade_bottom"
data-trigerId="skills"
>
<h3>SQL</h3>
<div class="tf__team_skills_bar_single">
<p>Performance</p>
<div id="bar4" class="barfiller">
<div class="tipWrap">
<span class="tip"></span>
</div>
<span class="fill" data-percentage="70"></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class="tab-pane fade"
id="pills-profile"
role="tabpanel"
aria-labelledby="pills-profile-tab"
tabindex="0"
>
<div class="row education">
<div class="col-xl-6 col-lg-6">
<div
class="tf__single_skill_2 fade_bottom"
data-trigerId="skills"
>
<h3>B.Tech</h3>
<h2>Sri Vasavi Engineering College</h2>
<h4>2022 - 2026</h4>
<p>
Joined this organisation through EAPCET COUNSELLING
in CSE(AI) Branch and scored 9.03 CGPA
</p>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<div
class="tf__single_skill_2 fade_bottom"
data-trigerId="skills"
>
<h3>Intermediate</h3>
<h2>Sasi Jr College</h2>
<h4>2020 - 2022</h4>
<p>
Scored 94% in Intermediate in the stream of MPC
</p>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<div
class="tf__single_skill_2 fade_bottom"
data-trigerId="skills"
>
<h3>AISSE</h3>
<h2>Lotus High School</h2>
<h4>2016 - 2020</h4>
<p>
Scored 84.5 in AISSE (10TH CBSE)
</p>
</div>
</div>
</div>
</div>
<div
class="tab-pane fade"
id="pills-contact"
role="tabpanel"
aria-labelledby="pills-contact-tab"
tabindex="0"
>
<div class="row education">
<div class="col-xl-6 col-lg-6">
<div
class="tf__single_skill_2"
data-trigerId="skills"
>
<h3><a href="images/ad.pdf">Android Developer by Google</a></h3>
<h2>AICTE COHORT-6</h2>
<h4>Sep - Oct (2023) </h4>
<p>
Thrilled to announce that I've graduated from the Android Developer course sponsored by AICTE and Google, as part of Cohort 6. 🚀🎓 Completing Kotlin for Android development has been an incredible journey, and I'm eager to leverage these skills in creating cutting-edge mobile applications. Grateful for this opportunity!
</p>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<div
class="tf__single_skill_2 fade_bottom"
data-trigerId="skills"
>
<h3><a href="images/gcp.pdf">Google Cloud Computing Foundations</a></h3>
<h2>NPTEL</h2>
<h4>Aug - Oct (2023)</h4>
<p>
Absolutely thrilled to announce the successful completion of the NPTEL course on Google Cloud Computing Foundation during the July-October session! 🚀🌐 This comprehensive program delved into the intricacies of cloud computing, providing invaluable insights into Google Cloud's cutting-edge technologies and solutions.
Throughout the course, I gained a profound understanding of key concepts such as virtualization, storage, networking, and security in the cloud computing landscape. </p>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<div
class="tf__single_skill_2 fade_bottom"
data-trigerId="skills"
>
<h3><a href="images/sl.jpg">Introduction to HTML</a></h3>
<h2>SoloLearn</h2>
<h4>Oct 2023</h4>
<p>
🚀 Excited to share that I've successfully
completed the "Introduction to HTML" certification by SoloLearn! 🎓💻
HTML is the backbone of web development, and this course has equipped me with the
fundamental skills needed to create and structure web content.
I'm eager to apply this knowledge to build amazing web experiences and
take my career to the next level. 🌐
</p>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<div
class="tf__single_skill_2 fade_bottom"
data-trigerId="skills"
>
<h3><a href="images/gll.png" >Linux Tutorial</a></h3>
<h2>Great Learning Academy</h2>
<h4>Oct 2023</h4>
<p>
I'm thrilled to announce that I've successfully completed a comprehensive Linux tutorial on the Great Learning platform, earning a well-deserved certificate. 🎓💻 Learning Linux has been an incredible journey, and I'm excited to harness its power for both personal and professional projects. Special thanks to Great Learning for the top-notch guidance and support throughout!
</p>
</div>
</div>
</div>
</div>
<div
class="tab-pane fade"
id="pills-disabled"
role="tabpanel"
aria-labelledby="pills-disabled-tab"
tabindex="0"
>
<div class="row education">
<div class="col-xl-6 col-lg-6">
<div
class="tf__single_skill_2 fade_bottom"
data-trigerId="skills"
>
<h3>Microsoft Learn Student Club (SVEC)</h3>
<h2>Creative & Designing Team Sub-Ordinate</h2>
<h4>Joined Oct 2023</h4>
<p>
I'm absolutely delighted to announce that I've been selected to be a part of the Microsoft Learn Student Club! This is a fantastic opportunity for me to immerse myself in the world of technology and gain hands-on experience with some of the most cutting-edge tools and platforms in the industry.
The Microsoft Learn Student Club is a community of like-minded individuals who share a passion for technology and a thirst for knowledge. I'm truly honored to be among the selected members, and I can't wait to collaborate, learn, and grow alongside my peers.Thank you for giving me this opportunity Chandu Neelam Sri Satya Satti Microsoft
</p>
</div>
</div>
<!--<div class="col-xl-6 col-lg-6">
<div
class="tf__single_skill_2 fade_bottom"
data-trigerId="skills"
>
<h3>BBA</h3>
<h2>University of Dhaka</h2>
<h4>2009 - 2012</h4>
<p>
Nemo enim ipsam voluptatem quia voluptas sit
aspernatur aut odit aut fugit sed thisnquia
consequuntur magni dolores eos qui ratione
voluptatem sequi nesciunt
</p>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<div
class="tf__single_skill_2 fade_bottom"
data-trigerId="skills"
>
<h3>HSC</h3>
<h2>Govt Bangla College</h2>
<h4>2009 - 2012</h4>
<p>
Nemo enim ipsam voluptatem quia voluptas sit
aspernatur aut odit aut fugit sed thisnquia
consequuntur magni dolores eos qui ratione
voluptatem sequi nesciunt
</p>
</div>
</div>
<div class="col-xl-6 col-lg-6">
<div
class="tf__single_skill_2 fade_bottom"
data-trigerId="skills"
>
<h3>SSC</h3>
<h2>Govt Bangla College</h2>
<h4>2009 - 2012</h4>
<p>
Nemo enim ipsam voluptatem quia voluptas sit
aspernatur aut odit aut fugit sed thisnquia
consequuntur magni dolores eos qui ratione
voluptatem sequi nesciunt
</p>
</div>
</div>
-->
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--================================
SKILLS 2 END
=================================-->
<!--================================
PORTFOLIO 2 START
=================================--><!--
<section id="portfolio" class="tf__portfolio tf__portfolio_2 mt_120 xs_mt_80">
<div class="container">
<div class="row">
<div class="col-xl-10 col-lg-9 mb_30">
<div class="tf__section_heading">
<h5 class="has-animation">my recent Portfolio</h5>
<h2 class="has-animation">
Elevate your brand to new heights with our portfolio expertise
</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-6 col-sm-6">
<a href="https://www.youtube.com/watch?v=B-ytMSuwbf8" class="tf__portfolio_item play_btn" data-cursor="Watch <br> video">
<img
src="images/portfolio/5.png"
alt="portfolio"
class="img-fluid w-100">
<div class="text">
<h4>sheet metal bending</h4>
<p>youtube</p>
</div>
</a>
</div>
<div class="col-xl-6 col-sm-6">
<a class="tf__portfolio_item play_btn" href="https://vimeo.com/132528823" data-cursor="Watch <br> video">
<img
src="images/portfolio/6.png"
alt="portfolio"
class="img-fluid w-100">
<div class="text">
<h4>sheet metal bending</h4>
<p>Vimeo</p>
</div>
</a>
</div>
<div class="col-xl-4 col-sm-6">
<a href="https://w.soundcloud.com/player/?visual=true&url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F159967086&show_artwork=true&maxwidth=1020&maxheight=1000&auto_play=1" class="tf__portfolio_item play_btn" data-cursor="Audio <br> sound">
<img
src="images/portfolio/7.png"
alt="portfolio"
class="img-fluid w-100">
<div class="text">
<h4>sheet metal bending</h4>
<p>soundcloud</p>
</div>
</a>
</div>
<div class="col-xl-4 col-sm-6">
<a href="images/portfolio/8.png" class="tf__portfolio_item image_popup" data-cursor="View <br> Image">
<img
src="images/portfolio/8.png"
alt="portfolio"
class="img-fluid w-100">
<div class="text">
<h4>sheet metal bending</h4>
<p>Image</p>
</div>
</a>
</div>
<div class="col-xl-4 col-sm-6">
<a href="#details-popup" class="tf__portfolio_item details" data-cursor="Details <br> View">
<img
src="images/portfolio/9.png"
alt="portfolio"
class="img-fluid w-100">
<div class="text">
<h4>sheet metal bending</h4>
<p>Modalbox</p>
</div>
</a>
<div class="mfp-fade mfp-hide" id="details-popup">
<div class="content">
<div class="img">
<img src="images/portfolio/9.png" alt="">
</div>
<div class="des">
<span class="category">Modalbox</span>
<h4 class="popup_title">Mobile Application</h4>
<p>
We live in a world where we need to move quickly and iterate on our ideas as flexibly as possible. Building mockups strikes the ideal balance between true-life representation of the end product and ease of modification.
</p>
<div class="details_quot_text">
<p>
ished fact that a reader will be distrol acted bioii the.ished fact that a reader .
</p>
<h4>By Insuzu Litarnit</h4>
</div>
<p>
Mockups are useful both for the creative phase of the project - for instance when you're trying to figure out your user flows or the proper visual hierarchy - and the production phase when they will represent the target product. Making mockups a part
of your creative and development process allows you to quickly and easily ideate.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
--!>
<!--================================
PORTFOLIO 2 END
=================================-->
<!--================================
BRAND START
=================================-->
<div class="tf__brand mt_120 xs_mt_80">
<div class="row">
<div class="col-12">
<div class="marquee_animi">
<ul>
<li>* Think</li>
<li>* Design</li>
<li>* Code</li>
<li>* Deploy</li>
</ul>
</div>
</div>
</div>
</div>
<!--================================
BRAND END
=================================-->
<!--================================
BLOG 2 START
=================================-->
<!--=============
<section id="blog" class="tf__blog_2 pt_120 xs_pt_80 pb_120 xs_pb_80">
<div class="container">
<div class="row">
<div class="col-xl-8 m-auto mb_30">
<div class="tf__section_heading">
<h5 class="has-animation">all blog</h5>
<h2 class="has-animation">
Rafting Unique Experiences Inspiring Connections
</h2>
</div>
</div>
</div>
<div class="row animation">
<div class="col-xl-4 col-md-6">
<div class="tf__slingle_blog_2 fade_left" data-trigerId="blog">
<a href="blog_details.html" data-cursor="Read <br> More" class="tf__blog_img_2">
<img
src="images/blog/4.jpg"
alt="blog"
class="img-fluid w-100">
<span>10 June</span>
</a>
<div class="tf__blog_text_2">
<ul>
<li>
<i class="fa-sharp fa-solid fa-circle-user"></i> By admin
</li>
<li>
<i class="fa-sharp fa-solid fa-comments"></i> Comments (05)
</li>
</ul>
<a class="title" href="blog_details.html">Where Passion and Purpose Collide</a
>
<p>
Lorem Ipsum is simply dummy text of the printing and types
etting in our company here thisn designers give me more
design here […]
</p>
</div>
</div>
</div>
<div class="col-xl-4 col-md-6">
<div class="tf__slingle_blog_2 fade_left" data-trigerId="blog">
<a
href="blog_details.html"
data-cursor="Read <br> More"
class="tf__blog_img_2"
>
<img
src="images/blog/5.jpg"
alt="blog"
class="img-fluid w-100">
<span>10 June</span>
</a>
<div class="tf__blog_text_2">
<ul>
<li>
<i class="fa-sharp fa-solid fa-circle-user"></i> By admin
</li>
<li>
<i class="fa-sharp fa-solid fa-comments"></i> Comments (05)
</li>
</ul>
<a class="title" href="blog_details.html">Where Passion and Purpose Collide</a
>
<p>
Lorem Ipsum is simply dummy text of the printing and types
etting in our company here thisn designers give me more
design here […]
</p>
</div>
</div>
</div>
<div class="col-xl-4 col-md-6">
<div class="tf__slingle_blog_2 fade_left" data-trigerId="blog">
<a
href="blog_details.html"
data-cursor="Read <br> More"
class="tf__blog_img_2"
>
<img
src="images/blog/6.jpg"
alt="blog"
class="img-fluid w-100">
<span>10 June</span>
</a>
<div class="tf__blog_text_2">
<ul>
<li>
<i class="fa-sharp fa-solid fa-circle-user"></i> By admin
</li>
<li>
<i class="fa-sharp fa-solid fa-comments"></i> Comments (05)
</li>
</ul>
<a class="title" href="blog_details.html">Where Passion and Purpose Collide</a
>
<p>
Lorem Ipsum is simply dummy text of the printing and types
etting in our company here thisn designers give me more
design here […]
</p>
</div>
</div>
</div>
</div>
</div>
</section>=========================-->
<!--================================
BLOG 2 END
=================================-->
<!--================================
CONTACT 2 START
=================================-->
<section id="contact" class="tf__contact_2 pt_95 xs_pt_45">
<div class="container">
<div class="row animation">
<div class="col-xl-4 col-md-6 col-lg-4">
<div
class="tf__contact_2_text fade_left"
data-trigerId="contact"
>
<span>
<img
src="svg/voice_phone.svg"
alt="contact"
class="img-fluid w-100 svg">
</span>
<h3>Phone</h3>
<p>
Loram ipsum eros justo, posuer oborti viverra laor house of
street
</p>
<a href="callto:+919849372827">9849372827</a>
</div>
</div>
<div class="col-xl-4 col-md-6 col-lg-4">
<div class="tf__contact_2_text fade_left" data-trigerId="contact">
<span>
<img
src="svg/map_issue.svg"
alt="contact"
class="img-fluid w-100 svg">
</span>
<h3>Location</h3>
<p>
Dwaraka Nagar Colony, Kadakatla,Tadepalligudem-534101,West Godavari , Andhra Pradesh
</p>