-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1308 lines (1178 loc) · 56.7 KB
/
index.html
File metadata and controls
1308 lines (1178 loc) · 56.7 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>
<title>GOWRISH H B</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900" rel="stylesheet">
<link rel="stylesheet" href="css/open-iconic-bootstrap.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/aos.css">
<link rel="stylesheet" href="css/ionicons.min.css">
<link rel="stylesheet" href="css/flaticon.css">
<link rel="stylesheet" href="css/icomoon.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
<style>
.portfolio-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
padding: 20px;
}
.portfolio-item {
width: calc(33.333% - 20px); /* Fits 3 items per row */
background-color: #1A1A1A;
box-shadow: 0 4px 8px rgba(255, 255, 255, 0);
border-radius: 4px;
overflow: hidden;
transition: transform 0.3s ease;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin-bottom: 20px;
box-sizing: border-box;
}
.portfolio-item:hover {
transform: translateY(-5px);
}
.portfolio-item img {
width: 100%;
height: auto;
max-height: 200px;
object-fit: cover;
object-position: top;
border-bottom: 1px solid #ddd;
}
.portfolio-description {
padding: 15px;
}
.portfolio-description h2 {
font-size: 1.2em;
margin: 10px 0 5px;
color: #ffffff;
}
.portfolio-description p {
font-size: 1em;
color: #666;
text-align: justify;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.portfolio-item {
width: calc(50% - 20px); /* 2 items per row on tablets */
}
}
@media (max-width: 480px) {
.portfolio-item {
width: 100%; /* Full width on smaller screens */
}
}
</style>
</head>
<body data-spy="scroll" data-target=".site-navbar-target" data-offset="300">
<nav class="navbar navbar-expand-lg navbar-dark ftco_navbar ftco-navbar-light site-navbar-target" id="ftco-navbar">
<div class="container">
<a class="navbar-brand" href="index.html">GOWRISH H B</a>
<button class="navbar-toggler js-fh5co-nav-toggle fh5co-nav-toggle" type="button" data-toggle="collapse" data-target="#ftco-nav" aria-controls="ftco-nav" aria-expanded="false" aria-label="Toggle navigation">
<span class="oi oi-menu"></span> Menu
</button>
<div class="collapse navbar-collapse" id="ftco-nav">
<ul class="navbar-nav nav ml-auto">
<li class="nav-item"><a href="#home-section" class="nav-link"><span>Home</span></a></li>
<li class="nav-item"><a href="#about-section" class="nav-link"><span>About</span></a></li>
<li class="nav-item"><a href="#work-section" class="nav-link"><span>Works</span></a></li>
<li class="nav-item"><a href="#resume-section" class="nav-link"><span>Experience</span></a></li>
<li class="nav-item"><a href="#services-section" class="nav-link"><span>Skills</span></a></li>
<!-- <li class="nav-item"><a href="#skills-section" class="nav-link"><span>Progress</span></a></li> -->
<li class="nav-item"><a href="#certificates-section" class="nav-link"><span>Certificates</span></a></li>
<li class="nav-item"><a href="#contact-section" class="nav-link"><span>Contact</span></a></li>
</ul>
</div>
</div>
</nav>
<section id="home-section" class="hero">
<div class="home-slider owl-carousel">
<div class="slider-item ">
<div class="overlay"></div>
<div class="container">
<div class="row d-md-flex no-gutters slider-text align-items-end justify-content-end" data-scrollax-parent="true">
<div class="one-third js-fullheight order-md-last img" style="background-image:url(images/bg_1.png);">
<div class="overlay"></div>
</div>
<div class="one-forth d-flex align-items-center ftco-animate" data-scrollax=" properties: { translateY: '70%' }">
<div class="text">
<span class="subheading">Hello!</span>
<h1 class="mb-4 mt-3">I'm <span>GOWRISH HB</span></h1>
<h2 class="mb-4">A Visionary Developer & Computer Hardware Savvy</h2>
<p><a href="#contact-section" class="btn btn-primary py-3 px-4">Hire me</a> <a href="#resume-section" class="btn btn-white btn-outline-white py-3 px-4">My works</a></p>
</div>
</div>
</div>
</div>
</div>
<div class="slider-item">
<div class="overlay"></div>
<div class="container">
<div class="row d-md-flex no-gutters slider-text align-items-end justify-content-end" data-scrollax-parent="true">
<div class="one-third js-fullheight order-md-last img" style="background-image:url(images/bg_2.png);">
<div class="overlay"></div>
</div>
<div class="one-forth d-flex align-items-center ftco-animate" data-scrollax=" properties: { translateY: '70%' }">
<div class="text">
<span class="subheading">Hello!</span>
<h1 class="mb-4 mt-3">I'm a <span>Visionary Developer & Computer Hardware Savvy</span></h1>
<p><a href="#contact-section" class="btn btn-primary py-3 px-4">Hire me</a> <a href="#resume-section" class="btn btn-white btn-outline-white py-3 px-4">My works</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-about img ftco-section ftco-no-pb" id="about-section">
<div class="container">
<div class="row d-flex">
<div class="col-md-6 col-lg-5 d-flex">
<div class="img-about img d-flex align-items-stretch">
<div class="overlay"></div>
<div class="img d-flex align-self-stretch align-items-center" style="background-image:url(images/bg_1.png);">
</div>
</div>
</div>
<div class="col-md-6 col-lg-7 pl-lg-5 pb-5">
<div class="row justify-content-start pb-3">
<div class="col-md-12 heading-section ftco-animate">
<h1 class="big">About</h1>
<h2 class="mb-4">Gowrish H B</h2>
<p>GOWRISH H B is a Visionary Developer and Computer Hardware Savvy with a passion for creating engaging and effective digital solutions. With extensive experience in web development, Minecraft server management, and computer hardware, I am dedicated to delivering high-quality products and excellent customer service.</p>
<ul class="about-info mt-4 px-md-0 px-2">
<li class="d-flex"><span class="subheading">Email:</span> <a href="mailto:gowrishhb5@gmail.com">gowrishhb5@gmail.com</a></li>
<li class="d-flex"><span class="subheading">Phone:</span> <a href="tel:+916361184577">+91 63611 84577</a></li>
<li class="d-flex"><span class="subheading">Address:</span> <span>Boys Hostel , Cambridge Institute Of Technology North Campus,Kundana,Bengaluru, Karnataka 562110</span></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="work-section">
<br><br><br>
<div class="row justify-content-center pb-5">
<div class="col-md-12 heading-section text-center ftco-animate">
<h1 class="big big-2">Works</h1>
<h2 class="mb-4">Works</h2>
<p>My graphic design experience highlights my creative skills and technical expertise, allowing me to <br>
deliver impactful visuals that effectively communicate brand messages. Each project showcases my commitment <br>
to quality and innovation in design.</p>
</div>
</div>
<main class="portfolio-container">
<!-- Portfolio Item 1 -->
<a
href="images/work/works (1).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (1).png" alt="Portfolio Item 1" />
<div class="portfolio-description">
<h2>Big Dreams Group Technical Training</h2>
<p>Invitation for team leaders to attend a Technical Training Program on the 24th and 25th of the month at Hotel La Classic, Bengaluru. Includes a QR code for easy location access and the Big Dreams Group logo and website.</p>
</div>
</a>
<!-- Portfolio Item 2 -->
<a
href="images/work/works (2).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (2).png" alt="Portfolio Item 2" />
<div class="portfolio-description">
<h2>Debate Competition Flyer</h2>
<p>This vibrant flyer promotes a debate competition organized by the IEEE Student Branch of Cambridge Institute of Technology North Campus. It includes details about the organizers, the competition date, venue, and a QR code for registration.</p>
</div>
</a>
<!-- Portfolio Item 3 -->
<a
href="images/work/works (3).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (3).png" alt="Portfolio Item 3" />
<div class="portfolio-description">
<h2>IEEE Student Club Logo</h2>
<p>A circular logo representing the IEEE Student Club at Cambridge Institute of Technology North Campus. The logo features the IEEE acronym and technical symbols.</p>
</div>
</a>
<!-- Portfolio Item 4 -->
<a
href="images/work/works (4).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (4).png" alt="Portfolio Item 4" style="object-position: center;"/>
<div class="portfolio-description">
<h2>Query Stromer's 2K24 Logo</h2>
<p>A dynamic logo design representing the intersection of thought and communication for "Query Stromer's 2K24"</p>
</div>
</a>
<!-- Portfolio Item 5 -->
<a
href="images/work/works (5).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (5).png" alt="Portfolio Item 5" />
<div class="portfolio-description">
<h2>Hell Craft Network: A Minecraft Adventure</h2>
<p>The image captures the essence of player interaction, combat, and exploration within this virtual world.</p>
</div>
</a>
<!-- Portfolio Item 6 -->
<a
href="images/work/works (6).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (6).png" alt="Portfolio Item 6" />
<div class="portfolio-description">
<h2>Pixelated Hell Beast</h2>
<p>A pixelated illustration of a fearsome, otherworldly creature. Its imposing stature and menacing expression suggest a powerful and dangerous entity. </p>
</div>
</a>
<!-- Portfolio Item 7 -->
<a
href="images/work/works (7).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (7).png" alt="Portfolio Item 7" style="object-position: center;"/>
<div class="portfolio-description">
<h2>Indi Craft Logo</h2>
<p>A vibrant and artistic logo for "Indi Craft," featuring a stylized font and a backdrop inspired by Indian culture.</p>
</div>
</a>
<!-- Portfolio Item 8 -->
<a
href="images/work/works (8).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (8).png" alt="Portfolio Item 8" />
<div class="portfolio-description">
<h2>Color-Graded Campus Photo</h2>
<p>A captivating photo of the Cambridge Institute of Technology North Campus, enhanced with a stunning color grade.</p>
</div>
</a>
<!-- Portfolio Item 9 -->
<a
href="images/work/works (9).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (9).png" alt="Portfolio Item 9" style="object-position: center;"/>
<div class="portfolio-description">
<h2>Hell Craft Logo</h2>
<p>A bold and fiery logo for "Hell Craft," featuring a stylized "H" symbol set against a dramatic, hellish backdrop.</p>
</div>
</a>
<!-- Portfolio Item 10 -->
<a
href="images/work/works (10).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (10).png" alt="Portfolio Item 10" />
<div class="portfolio-description">
<h2>Certificate of Participation</h2>
<p>A colorful and visually appealing certificate recognizing Yaswanth Simha Reddy's participation in the IEEE Tech Tussel Debate Competition hosted at CITNC</p>
</div>
</a>
<!-- Portfolio Item 11 -->
<a
href="images/work/works (11).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (11).png" alt="Portfolio Item 11" />
<div class="portfolio-description">
<h2>Tech Tussle: IEEE Debate Competition</h2>
<p>The poster highlights the event's theme of "Tech Tussle," inviting participants to engage in thought-provoking debates on emerging technologies.</p>
</div>
</a>
<!-- Portfolio Item 12 -->
<a
href="images/work/works (12).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (12).png" alt="Portfolio Item 12" />
<div class="portfolio-description">
<h2>Tech Tussle: IEEE Debate Competition</h2>
<p>The poster features a playful illustration of two individuals debating, emphasizing the interactive and engaging nature of the event.</p>
</div>
</a>
<!-- Portfolio Item 13 -->
<a
href="images/work/works (13).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (13).png" alt="Portfolio Item 13" />
<div class="portfolio-description">
<h2>Satyanarayana Bhagwan Puja Invitation</h2>
<p>An elegant invitation card for a Satyanarayana Bhagwan Puja, featuring a traditional design with a focus on prayer and devotion. The card includes details about the date, time, and venue of the event.</p>
</div>
</a>
<!-- Portfolio Item 14 -->
<a
href="images/work/works (14).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (14).png" alt="Portfolio Item 14" style="object-position: center;"/>
<div class="portfolio-description">
<h2>Epic Essentials Logo</h2>
<p>A simple and elegant logo for a brand named "Epic Essentials." The handwritten font and soft brushstroke background create a warm and inviting feel.</p>
</div>
</a>
<!-- Portfolio Item 15 -->
<a
href="images/work/works (15).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (15).png" alt="Portfolio Item 15" style="object-position: center;"/>
<div class="portfolio-description">
<h2>Epic Essentials Logo</h2>
<p>A clean and minimalist logo design for "Epic Essentials," framed by lush tropical leaves. The simple yet elegant typography and natural elements create a sense of freshness and vitality.</p>
</div>
</a>
<!-- Portfolio Item 16 -->
<a
href="images/work/works (16).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (16).png" alt="Portfolio Item 16" />
<div class="portfolio-description">
<h2>Minimalist Designer Portfolio Cover</h2>
<p> A clean and minimalist portfolio cover showcasing my name, and a brief statement about their design philosophy: focusing on brevity & minimalism.</p>
</div>
</a>
<!-- Portfolio Item 17 -->
<a
href="images/work/works (17).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (17).png" alt="Portfolio Item 17" />
<div class="portfolio-description">
<h2>Tech Tussle: IEEE Debate Competition</h2>
<p>The poster features a simple illustration of two people engaged in a conversation, symbolizing the debate and discussion that will take place during the event.</p>
</div>
</a>
<!-- Portfolio Item 18 -->
<a
href="images/work/works (18).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (18).png" alt="Portfolio Item 18" />
<div class="portfolio-description">
<h2>IndiCraftMC Logo</h2>
<p>A bold and colorful logo for the IndiCraftMC community, featuring a stylized font and the iconic Minecraft block texture. The design evokes a sense of fun, creativity, and community.</p>
</div>
</a>
<!-- Portfolio Item 19 -->
<a
href="images/work/works (19).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (19).png" alt="Portfolio Item 19" />
<div class="portfolio-description">
<h2>IEEE Tech Tussle: Debate Competition</h2>
<p>The poster features a dynamic illustration of two people debating, along with key information about the event, including the topics, prizes, and registration details.</p>
</div>
</a>
<!-- Portfolio Item 20 -->
<a
href="images/work/works (20).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (20).png" alt="Portfolio Item 20" />
<div class="portfolio-description">
<h2>IndiCraftMC End Update</h2>
<p>The poster showcases a stunning image of the End, highlighting the new spawn point and the introduction of random teleportation. It also emphasizes the need for specific permissions to access this dimension.</p>
</div>
</a>
<!-- Portfolio Item 21 -->
<a
href="images/work/works (21).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (21).png" alt="Portfolio Item 21" />
<div class="portfolio-description">
<h2>Nandi Tech Solutions</h2>
<p>This flyer advertises Nandi Tech Solutions, a computer repair and sales service. It highlights their range of services, including computer and laptop sales, expert repairs, software installations, and troubleshooting.</p>
</div>
</a>
<!-- Portfolio Item 22 -->
<a
href="images/work/works (22).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (22).png" alt="Portfolio Item 22" />
<div class="portfolio-description">
<h2>GTA V Live Stream | Story Mode</h2>
<p>This is a thumbnail for a YouTube live stream featuring gameplay of Grand Theft Auto V (GTA V) in Story Mode. The thumbnail includes the game's logo and text indicating that the stream is live.</p>
</div>
</a>
<!-- Portfolio Item 23 -->
<a
href="images/work/works (23).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (23).png" alt="Portfolio Item 23" />
<div class="portfolio-description">
<h2>Trinity Tech: Building Affordable</h2>
<p>The design features a laptop, tablet, and coffee cup arranged on a black surface, along with the company logo and tagline. The overall aesthetic is clean, modern, and professional.</p>
</div>
</a>
<!-- Portfolio Item 24 -->
<a
href="images/work/works (24).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (24).png" alt="Portfolio Item 24" style="object-position: center;"/>
<div class="portfolio-description">
<h2>Trinity Tech Logo</h2>
<p>The logo features a stylized trinity symbol, representing the company's commitment to quality, affordability, and customer satisfaction. The minimalist design and clean typography reinforce the brand's focus on simplicity and efficiency.</p>
</div>
</a>
<!-- Portfolio Item 25 -->
<a
href="images/work/works (25).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (25).png" alt="Portfolio Item 25" />
<div class="portfolio-description">
<h2>Wedding Invitation V-1</h2>
<p>The invitation features a minimalist design with a focus on greenery and watercolor elements. The couple's names are prominently displayed, along with the date, time, and venue of the wedding.</p>
</div>
</a>
<!-- Portfolio Item 26 -->
<a
href="images/work/works (26).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (26).png" alt="Portfolio Item 26" />
<div class="portfolio-description">
<h2>Wedding Invitation V-2</h2>
<p>The invitation features a romantic design with a focus on soft pink flowers and a delicate watercolor background. The couple's names are elegantly displayed, along with the date, time, and venue of the wedding.</p>
</div>
</a>
<!-- Portfolio Item 27 -->
<a
href="images/work/works (27).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (27).png" alt="Portfolio Item 27" />
<div class="portfolio-description">
<h2>Wedding Invitation V-3</h2>
<p>The card features a vintage-inspired design with a focus on vibrant marigold flowers. The couple's names are elegantly displayed, along with the date, time, and venue of the wedding.</p>
</div>
</a>
<!-- Portfolio Item 28 -->
<a
href="images/work/works (28).png"
target="_blank"
class="portfolio-item"
>
<img src="images/work/works (28).png" alt="Portfolio Item 28" />
<div class="portfolio-description">
<h2>TUTEE-AIO Logo</h2>
<p> This logo features a red apple with a pink heart on top, resting on a stack of colorful books. The text "TUTEE-A10" is displayed on a purple banner at the bottom. The logo is for a tutoring service or educational platform, emphasizing the importance of knowledge and learning.</p>
</div>
</a>
<!-- Add more portfolio items as needed -->
<!-- Ensure to replace the title and description for each item -->
</main>
</section>
<section class="ftco-section" id="resume-section">
<div class="container">
<div class="row justify-content-center pb-5">
<div class="col-md-12 heading-section text-center ftco-animate">
<h1 class="big big-2">Experience</h1>
<h2 class="mb-4">Work Experience</h2>
<p>My work experience showcases my practical skills, expertise, and accomplishments gained through employment.</p>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="resume-wrap ftco-animate">
<span class="date">2023 - Present</span>
<h2>Founder, CEO & Lead Developer @ Hell Craft Network</h2>
<span class="position">A renowned Minecraft gaming community</span>
<p class="mt-4">
As the Owner, CEO, and Lead Developer of Hell Craft Network, I have spearheaded numerous initiatives to enhance gameplay experiences and drive community engagement. With a deep understanding of various server types, I excel in optimizing server performance, troubleshooting issues, and implementing innovative solutions to exceed player expectations.
</p>
</div>
<div class="resume-wrap ftco-animate">
<span class="date">2023 - Present</span>
<h2>IEEE Webmaster, Cambridge Institute Of Technology North Campus</h2>
<span class="position">Ensuring the smooth operation and maintenance of the IEEE website</span>
<p class="mt-4">
As the IEEE Webmaster, I manage and update web content, ensuring accuracy, relevance, and adherence to brand guidelines. I implement effective SEO strategies to drive increased website traffic and improved search engine rankings, collaborating with cross-functional teams to develop and implement website enhancements and innovative features.
</p>
</div>
<div class="resume-wrap ftco-animate">
<span class="date">2020 - 2023</span>
<h2>Diploma in Computer Science & Engineering</h2>
<span class="position">Government Polytechnic KGF</span>
<p class="mt-4">
Completed a Diploma in Computer Science & Engineering, demonstrating strong technical and problem-solving skills.
</p>
</div>
</div>
<div class="col-md-6">
<div class="resume-wrap ftco-animate">
<span class="date">2023 - 2026</span>
<h2>B.E in Computer Science & Engineering</h2>
<span class="position">Cambridge Institute Of Technology North Campus</span>
<p class="mt-4">
Pursuing a B.E in Computer Science & Engineering, building a strong foundation in computer science fundamentals.
</p>
</div>
<div class="resume-wrap ftco-animate">
<span class="date">2023</span>
<h2>AI Smart Mirror Using Raspberry PI 3B+</h2>
<span class="position">Capstone Project</span>
<p class="mt-4">
〄 Led a team in the successful execution of the "AI Smart Mirror Using Raspberry PI 3B+" capstone project, demonstrating exceptional project management, technical skills, and innovation.
<br>
〄 capstone project under the Department of Technical Education.<br><br>
Key Contributions:<br>
〄 Conceptualized and contributed to the design and development of an innovative AI Smart Mirror system.<br>
〄 Coordinated the integration of hardware components including Raspberry PI 3B+, camera, display, and sensors.<br>
〄 Implemented software solutions utilizing Python, OpenCV, TensorFlow, and Google Cloud Platform for advanced functionalities such as facial recognition and natural language<br>
processing.<br>
〄 Oversaw rigorous testing phases ensuring the system's functionality and reliability.<br>
〄 Deployed the AI Smart Mirror in real-world environments, demonstrating its practical utility and seamless integration with daily routines.<br>
</p>
</div>
</div>
</div>
<div class="row justify-content-center mt-5">
<div class="col-md-6 text-center ftco-animate">
<p><a href="https://github.com/gowrish005" target="_blank" class="btn btn-white btn-outline-white py-3 px-4">GitHub</a> <a href="https://www.linkedin.com/in/gowrishhb5" target="_blank" class="btn btn-primary py-3 px-4">LinkedIn</a> <a href="Gowrish-Resume.pdf" target="_blank" class="btn btn-white btn-outline-white py-3 px-4">Resume</a></p>
</div>
</div>
</div>
</section>
<section class="ftco-section" id="services-section">
<div class="container">
<div class="row justify-content-center py-5 mt-5">
<div class="col-md-12 heading-section text-center ftco-animate">
<h1 class="big big-2">Skills</h1>
<h2 class="mb-4">Skills</h2>
<p>I possess a diverse range of abilities, honed through experience and training, enabling me to excel in various professional endeavors.</p>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="service-wrap ftco-animate">
<div class="icon d-flex align-items-center justify-content-center">
<span class="flaticon-analysis"></span>
</div>
<div class="text">
<h3><a href="#">Minecraft Server Development</a></h3>
<p>Proficient in setting up, configuring, and maintaining Minecraft servers, ensuring optimal performance and player experience.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-wrap ftco-animate">
<div class="icon d-flex align-items-center justify-content-center">
<span class="flaticon-flasks"></span>
</div>
<div class="text">
<h3><a href="#">Server Management</a></h3>
<p>Skilled in managing servers, including setup, maintenance, security, and optimization for various applications and services.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-wrap ftco-animate">
<div class="icon d-flex align-items-center justify-content-center">
<span class="flaticon-ideas"></span>
</div>
<div class="text">
<h3><a href="#">Entrepreneurship</a></h3>
<p>Possesses knowledge and experience in starting, growing, and managing businesses, with a focus on innovation, strategy, and sustainable growth.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-wrap ftco-animate">
<div class="icon d-flex align-items-center justify-content-center">
<span class="flaticon-computer"></span>
</div>
<div class="text">
<h3><a href="#">Computer Hardware Expertise</a></h3>
<p>Experienced in computer hardware, including assembly, troubleshooting, upgrading, and repair, with a background in freelancing in this domain.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-wrap ftco-animate">
<div class="icon d-flex align-items-center justify-content-center">
<span class="flaticon-idea"></span>
</div>
<div class="text">
<h3><a href="#">UI Designing with Figma</a></h3>
<p>Skilled in UI (User Interface) designing using Figma, a collaborative interface design tool, including creating wireframes, mockups, and prototypes for web and mobile applications.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-wrap ftco-animate">
<div class="icon d-flex align-items-center justify-content-center">
<span class="flaticon-settings"></span>
</div>
<div class="text">
<h3><a href="#">Project Management</a></h3>
<p>Experienced in overseeing projects from initiation to completion, including planning, scheduling, budgeting, and resource allocation to ensure successful outcomes.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section class="ftco-section" id="skills-section">
<div class="container">
<div class="row justify-content-center pb-5">
<div class="col-md-12 heading-section text-center ftco-animate">
<h1 class="big big-2">Progress</h1>
<h2 class="mb-4">Progress</h2>
<p>My journey is marked by continuous growth, learning, and improvement, reflecting my commitment to advancing professionally.</p>
</div>
</div>
<div class="row">
<div class="col-md-6 animate-box">
<div class="progress-wrap ftco-animate">
<h3>Minecraft Server Development<br><br></h3>
<div class="progress">
<div class="progress-bar color-1" role="progressbar" aria-valuenow="100"
aria-valuemin="0" aria-valuemax="100" style="width:100%">
<span>100%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box">
<div class="progress-wrap ftco-animate">
<h3>Server Management<br><br></h3>
<div class="progress">
<div class="progress-bar color-2" role="progressbar" aria-valuenow="60"
aria-valuemin="0" aria-valuemax="100" style="width:60%">
<span>60%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box">
<div class="progress-wrap ftco-animate">
<h3>Core (Python, Java, C, HTML)<br><br></h3>
<div class="progress">
<div class="progress-bar color-3" role="progressbar" aria-valuenow="100"
aria-valuemin="0" aria-valuemax="100" style="width:100%">
<span>100%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box">
<div class="progress-wrap ftco-animate">
<h3>Data Structures (Python, C)<br><br></h3>
<div class="progress">
<div class="progress-bar color-4" role="progressbar" aria-valuenow="80"
aria-valuemin="0" aria-valuemax="100" style="width:80%">
<span>80%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box">
<div class="progress-wrap ftco-animate">
<h3>Game Development Familiarity (Unreal Engine)<br><br></h3>
<div class="progress">
<div class="progress-bar color-5" role="progressbar" aria-valuenow="20"
aria-valuemin="0" aria-valuemax="100" style="width:20%">
<span>20%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box">
<div class="progress-wrap ftco-animate">
<h3>Computer Hardware Expertise<br><br></h3>
<div class="progress">
<div class="progress-bar color-6" role="progressbar" aria-valuenow="90"
aria-valuemin="0" aria-valuemax="100" style="width:90%">
<span>90%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box">
<div class="progress-wrap ftco-animate">
<h3>SQL Data Management<br><br></h3>
<div class="progress">
<div class="progress-bar color-7" role="progressbar" aria-valuenow="85"
aria-valuemin="0" aria-valuemax="100" style="width:85%">
<span>85%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box">
<div class="progress-wrap ftco-animate">
<h3>Computer Networking<br><br></h3>
<div class="progress">
<div class="progress-bar color-8" role="progressbar" aria-valuenow="80"
aria-valuemin="0" aria-valuemax="100" style="width:80%">
<span>80%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box">
<div class="progress-wrap ftco-animate">
<h3>Artificial Intelligence and Machine Learning (AIML)<br><br></h3>
<div class="progress">
<div class="progress-bar color-9" role="progressbar" aria-valuenow="30"
aria-valuemin="0" aria-valuemax="100" style="width:30%">
<span>30%</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<section class="ftco-section" id="certificates-section">
<div class="container">
<div class="row justify-content-center pb-5">
<div class="col-md-12 heading-section text-center ftco-animate">
<h1 class="big big-2">Certificates</h1>
<h2 class="mb-4">Certificates</h2>
<p>Demonstrating my expertise, these certifications validate my skills and knowledge in specific areas, enhancing my credibility and value in the professional realm.</p>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="project img ftco-animate d-flex justify-content-center align-items-center" style="background-image: url(certificates/AIML_basics.jpg);">
<div class="overlay"></div>
<a href="certificates/AIML_basics.jpg" class="d-flex justify-content-center align-items-center">
<div class="text text-center p-4">
<h3>Introduction to Artificial Intelligence</h3>
<span>Mastery in foundational AI concepts, algorithms, and applications.</span>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="project img ftco-animate d-flex justify-content-center align-items-center" style="background-image: url(certificates/Basics_of_Linear_Algebra_using_Python.jpg);">
<div class="overlay"></div>
<a href="certificates/Basics_of_Linear_Algebra_using_Python.jpg" class="d-flex justify-content-center align-items-center">
<div class="text text-center p-4">
<h3>Basics of Linear Algebra using Python</h3>
<span>Proficiency in applying linear algebra concepts with Python.</span>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="project img ftco-animate d-flex justify-content-center align-items-center" style="background-image: url(certificates/Basics_of_Python.jpg);">
<div class="overlay"></div>
<a href="certificates/Basics_of_Python.jpg" class="d-flex justify-content-center align-items-center">
<div class="text text-center p-4">
<h3>Basics of Python</h3>
<span>Mastery in Python syntax, data structures, and control flow.</span>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="project img ftco-animate d-flex justify-content-center align-items-center" style="background-image: url(certificates/Exploratory_Data_Analysis.jpg);">
<div class="overlay"></div>
<a href="certificates/Exploratory_Data_Analysis.jpg" class="d-flex justify-content-center align-items-center">
<div class="text text-center p-4">
<h3>Exploratory Data Analysis</h3>
<span>Skill in analyzing and visualizing data to extract insights.</span>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="project img ftco-animate d-flex justify-content-center align-items-center" style="background-image:url(certificates/Explore_Machine_Learning_using_Python.jpg);">
<div class="overlay"></div>
<a href="certificates/Explore_Machine_Learning_using_Python.jpg" class="d-flex justify-content-center align-items-center">
<div class="text text-center p-4">
<h3>Explore Machine Learning using Python</h3>
<span>Proficiency in implementing ML algorithms with Python.</span>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="project img ftco-animate d-flex justify-content-center align-items-center" style="background-image: url(certificates/Introduction_to_Data_Science.jpg);">
<div class="overlay"></div>
<a href="certificates/Introduction_to_Data_Science.jpg" class="d-flex justify-content-center align-items-center">
<div class="text text-center p-4">
<h3>Introduction to Data Science</h3>
<span>Foundation in data science concepts, methodologies, and tools.</span>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="project img ftco-animate d-flex justify-content-center align-items-center" style="background-image: url(certificates/Introduction_to_Deep_Learning.jpg);">
<div class="overlay"></div>
<a href="certificates/Introduction_to_Deep_Learning.jpg" class="d-flex justify-content-center align-items-center">
<div class="text text-center p-4">
<h3>Introduction to Deep Learning</h3>
<span>Proficiency in deep learning basics, architectures, and applications.</span>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="project img ftco-animate d-flex justify-content-center align-items-center" style="background-image: url(certificates/Natural_Language_Processing_using_Python.jpg);">
<div class="overlay"></div>
<a href="certificates/Natural_Language_Processing_using_Python.jpg" class="d-flex justify-content-center align-items-center">
<div class="text text-center p-4">
<h3>Natural Language Processing using Python</h3>
<span> Mastery in fundamental Python programming concepts.</span>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="project img ftco-animate d-flex justify-content-center align-items-center" style="background-image: url(certificates/Programming_Fundamentals_using_Python_Part_1.jpg);">
<div class="overlay"></div>
<a href="certificates/Programming_Fundamentals_using_Python_Part_1.jpg" class="d-flex justify-content-center align-items-center">
<div class="text text-center p-4">
<h3>Programming Fundamentals using Python - Part 1</h3>
<span>Proficiency in advanced Python programming techniques.</span>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="project img ftco-animate d-flex justify-content-center align-items-center" style="background-image: url(certificates/Programming_Fundamentals_using_Python_Part_2.jpg);">
<div class="overlay"></div>
<a href="certificates/Programming_Fundamentals_using_Python_Part_2.jpg" class="d-flex justify-content-center align-items-center">
<div class="text text-center p-4">
<h3>Programming Fundamentals using Python - Part 2</h3>
<span>Description of Programming Fundamentals using Python - Part 2.pdf</span>
</div>
</a>
</div>
</div>
</div>
</div>
</section>