-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1001 lines (908 loc) · 37.5 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 class="no-js" lang="en">
<head>
<!-- meta data -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!--font-family-->
<link href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&subset=devanagari,latin-ext" rel="stylesheet">
<!-- title of site -->
<title>Resume</title>
<!-- For favicon png -->
<link rel="shortcut icon" type="image/icon" href="assets/logo/favicon.png"/>
<!--font-awesome.min.css-->
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<!--flat icon css-->
<link rel="stylesheet" href="assets/css/flaticon.css">
<!--animate.css-->
<link rel="stylesheet" href="assets/css/animate.css">
<!--owl.carousel.css-->
<link rel="stylesheet" href="assets/css/owl.carousel.min.css">
<link rel="stylesheet" href="assets/css/owl.theme.default.min.css">
<!--bootstrap.min.css-->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- bootsnav -->
<link rel="stylesheet" href="assets/css/bootsnav.css" >
<!--style.css-->
<link rel="stylesheet" href="assets/css/style.css">
<!--responsive.css-->
<link rel="stylesheet" href="assets/css/responsive.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!-- top-area Start -->
<header class="top-area">
<div class="header-area">
<!-- Start Navigation -->
<nav class="navbar navbar-default bootsnav navbar-fixed dark no-background">
<div class="container">
<!-- Start Header Navigation -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-menu">
<i class="fa fa-bars"></i>
</button>
<a class="navbar-brand" href="index.html">Resume</a>
</div><!--/.navbar-header-->
<!-- End Header Navigation -->
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse menu-ui-design" id="navbar-menu">
<ul class="nav navbar-nav navbar-right" data-in="fadeInDown" data-out="fadeOutUp">
<li class=" smooth-menu active"></li>
<li class=" smooth-menu"><a href="#education">education</a></li>
<li class="smooth-menu"><a href="#skills">skills</a></li>
<li class="smooth-menu"><a href="#experience">experience</a></li>
<li class="smooth-menu"><a href="#profiles">profile</a></li>
<li class="smooth-menu"><a href="#portfolio">portfolio</a></li>
<li class="smooth-menu"><a href="#clients">clients</a></li>
<li class="smooth-menu"><a href="#contact">contact</a></li>
</ul><!--/.nav -->
</div><!-- /.navbar-collapse -->
</div><!--/.container-->
</nav><!--/nav-->
<!-- End Navigation -->
</div><!--/.header-area-->
<div class="clearfix"></div>
</header><!-- /.top-area-->
<!-- top-area End -->
<!--welcome-hero start -->
<section id="welcome-hero" class="welcome-hero">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<div class="header-text">
<h2>hi <span>,</span> I am <br> Adithya N Murthy <br></h2>
<p>University Student and Freelancer</p>
<a href="assets/download/browney.txt" download>Download Resume</a>
</div><!--/.header-text-->
</div><!--/.col-->
</div><!-- /.row-->
</div><!-- /.container-->
</section><!--/.welcome-hero-->
<!--welcome-hero end -->
<!--about start -->
<section id="about" class="about">
<div class="section-heading text-center">
<h2>About me</h2>
</div>
<div class="container">
<div class="about-content">
<div class="row">
<div class="col-sm-6">
<div class="single-about-txt">
<h3>
Hello there! I'm Adithya N Murthy, a passionate and curious individual navigating the exciting journey of RV university life. Currently in my first year, I'm pursuing a Bachelor's degree in Computer Science and Engineering with honors.
</h3>
<p>
Ever since I wrote my first line of code, I've been captivated by the endless possibilities that technology presents. My journey into the world of programming began with simple algorithms, and now, I find myself immersed in the complexities of computer systems, artificial intelligence, and software development.
Beyond the lines of code, I'm an avid problem solver, always seeking new challenges to tackle. I believe in the power of technology to transform ideas into reality, and I'm thrilled to be part of a field that continually pushes the boundaries of innovation.University life has not only sharpened my technical skills but has also provided a platform for personal growth and exploration. I'm an enthusiastic learner, always eager to explore emerging technologies and apply my knowledge to real-world problems.Beyond the professional realm of freelancing, I am a student and continuous learner, always staying abreast of industry trends and embracing new tools and techniques; I'm a partner invested in the success of projects.Let's embark on this journey together, turning visions into tangible results
</p>
<div class="row">
<div class="col-sm-4">
<div class="single-about-add-info">
<h3>phone</h3>
<p>9900258666</p>
</div>
</div>
<div class="col-sm-4">
<div class="single-about-add-info">
<h3>email</h3>
<p>[email protected]</p>
</div>
</div>
<div class="col-sm-4">
<div class="single-about-add-info">
<h3>website</h3>
<p>www.adithya.com</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-offset-1 col-sm-5">
<div class="single-about-img">
<img src="ADI.jpg" alt="profile_image">
<div class="about-list-icon">
<ul>
<li>
<a href="https://www.facebook.com/">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
</li><!-- / li -->
<li>
<a href="https://github.com/Adithyanmurthy">
<i class="fa fa-github" aria-hidden="true"></i>
</a>
</li><!-- / li -->
<li>
<a href="https://twitter.com/Adithyanmurthy">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
</li><!-- / li -->
<li>
<a href="https://in.linkedin.com/">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
</li><!-- / li -->
<li>
<a href="https://www.instagram.com/">
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
</li><!-- / li -->
</ul><!-- / ul -->
</div><!-- /.about-list-icon -->
</div>
</div>
</div>
</div>
</div>
</section><!--/.about-->
<!--about end -->
<!--education start -->
<section id="education" class="education">
<div class="section-heading text-center">
<h2>education</h2>
</div>
<div class="container">
<div class="education-horizontal-timeline">
<div class="row">
<div class="col-sm-4">
<div class="single-horizontal-timeline">
<div class="experience-time">
<h2>2023</h2>
<h3>Btech(H) <span>of </span> computer science</h3>
</div><!--/.experience-time-->
<div class="timeline-horizontal-border">
<i class="fa fa-circle" aria-hidden="true"></i>
<span class="single-timeline-horizontal"></span>
</div>
<div class="timeline">
<div class="timeline-content">
<h4 class="title">
RV University
</h4>
<h5>Mysore Road, Bangalore</h5>
<p class="description">
Greetings! I'm Adithya, an individual with a fervent passion for education and a firm belief in its transformative power. My academic journey has been a dedicated pursuit of knowledge, and I'm proud to share that I've successfully completed my studies at RV University, majoring in CSE.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div>
</div>
<div class="col-sm-4">
<div class="single-horizontal-timeline">
<div class="experience-time">
<h2>2020 - 2022</h2>
<h3>12th <span>class </span> CBSE</h3>
</div><!--/.experience-time-->
<div class="timeline-horizontal-border">
<i class="fa fa-circle" aria-hidden="true"></i>
<span class="single-timeline-horizontal"></span>
</div>
<div class="timeline">
<div class="timeline-content">
<h4 class="title">
Narayana +2 and PU college
</h4>
<h5>Nelemangala, Banglore rural</h5>
<p class="description">
Hello! I'm Adithya N Murthy, currently navigated the challenges and excitement of the 12th grade at Narayana. My academic journey at Narayana has been a period of growth, exploration, and preparation for the next chapter of my life.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div>
</div>
<div class="col-sm-4">
<div class="single-horizontal-timeline">
<div class="experience-time">
<h2>2019</h2>
<h3>10th <span>class </span> CBSE</h3>
</div><!--/.experience-time-->
<div class="timeline-horizontal-border">
<i class="fa fa-circle" aria-hidden="true"></i>
<span class="single-timeline-horizontal spacial-horizontal-line
"></span>
</div>
<div class="timeline">
<div class="timeline-content">
<h4 class="title">
Auden Insitution Of Education
</h4>
<h5>hoskerahalli, Bangalore</h5>
<p class="description">
Hello! I'm Adithya N Murthy,navigated the challenges and excitement of the 10th grade at Auden. My academic journey at Auden has been a period of growth, exploration, and preparation for the next chapter of my life.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div>
</div>
</div>
</div>
</div>
</section><!--/.education-->
<!--education end -->
<!--skills start -->
<section id="skills" class="skills">
<div class="skill-content">
<div class="section-heading text-center">
<h2>skills</h2>
</div>
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="single-skill-content">
<div class="barWrapper">
<span class="progressText">adobe photoshop</span>
<div class="single-progress-txt">
<div class="progress ">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="10" aria-valuemax="100" style="">
</div>
</div>
<h3>90%</h3>
</div>
</div><!-- /.barWrapper -->
<div class="barWrapper">
<span class="progressText">C programming</span>
<div class="single-progress-txt">
<div class="progress ">
<div class="progress-bar" role="progressbar" aria-valuenow="85" aria-valuemin="10" aria-valuemax="100" style="">
</div>
</div>
<h3>85%</h3>
</div>
</div><!-- /.barWrapper -->
<div class="barWrapper">
<span class="progressText">PHP</span>
<div class="single-progress-txt">
<div class="progress ">
<div class="progress-bar" role="progressbar" aria-valuenow="97" aria-valuemin="10" aria-valuemax="100" style="">
</div>
</div>
<h3>97%</h3>
</div>
</div><!-- /.barWrapper -->
<div class="barWrapper">
<span class="progressText">sketch</span>
<div class="single-progress-txt">
<div class="progress ">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="10" aria-valuemax="100" style="">
</div>
</div>
<h3>90%</h3>
</div>
</div><!-- /.barWrapper -->
<div class="barWrapper">
<span class="progressText">Python</span>
<div class="single-progress-txt">
<div class="progress ">
<div class="progress-bar" role="progressbar" aria-valuenow="97" aria-valuemin="10" aria-valuemax="100" style="">
</div>
</div>
<h3>95%</h3>
</div>
</div><!-- /.barWrapper -->
</div>
</div>
<div class="col-md-6">
<div class="single-skill-content">
<div class="barWrapper">
<span class="progressText">html 5</span>
<div class="single-progress-txt">
<div class="progress ">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="10" aria-valuemax="100" style="">
</div>
</div>
<h3>90%</h3>
</div>
</div><!-- /.barWrapper -->
<div class="barWrapper">
<span class="progressText">css 3 animation</span>
<div class="single-progress-txt">
<div class="progress ">
<div class="progress-bar" role="progressbar" aria-valuenow="85" aria-valuemin="10" aria-valuemax="100" style="">
</div>
</div>
<h3>85%</h3>
</div>
</div><!-- /.barWrapper -->
<div class="barWrapper">
<span class="progressText">communication</span>
<div class="single-progress-txt">
<div class="progress ">
<div class="progress-bar" role="progressbar" aria-valuenow="97" aria-valuemin="10" aria-valuemax="100" style="">
</div>
</div>
<h3>97%</h3>
</div>
</div><!-- /.barWrapper -->
<div class="barWrapper">
<span class="progressText">Javascript</span>
<div class="single-progress-txt">
<div class="progress ">
<div class="progress-bar" role="progressbar" aria-valuenow="97" aria-valuemin="10" aria-valuemax="100" style="">
</div>
</div>
<h3>95%</h3>
</div>
</div><!-- /.barWrapper -->
<div class="barWrapper">
<span class="progressText"> creativity</span>
<div class="single-progress-txt">
<div class="progress ">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="10" aria-valuemax="100" style="">
</div>
</div>
<h3>90%</h3>
</div>
</div><!-- /.barWrapper -->
</div>
</div>
</div><!-- /.row -->
</div> <!-- /.container -->
</div><!-- /.skill-content-->
</section><!--/.skills-->
<!--skills end -->
<!--experience start -->
<section id="experience" class="experience">
<div class="section-heading text-center">
<h2>Experience</h2>
</div>
<div class="container">
<div class="experience-content">
<div class="main-timeline">
<ul>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
<h2>2024</h2>
<h3>Internship</h3>
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<h4 class="title">
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
Internshub
</h4>
<h5>Nanotechnology</h5>
<p class="description">
I had the incredible opportunity to undertake an internship in nanotechnology through Internshub, an experience that profoundly influenced my understanding of cutting-edge scientific research. During this internship, I immersed myself in the fascinating world of nanotechnology, gaining experience in the application of nanomaterials and their potential impact on various industries.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-offset-1 col-md-5 experience-time-responsive">
<div class="experience-time">
<h2>
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
14 Dec 2023
</h2>
<h3>IWD Project</h3>
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-5">
<div class="timeline">
<div class="timeline-content text-right">
<h4 class="title">
Mini Project
</h4>
<h5>User interactive website</h5>
<p class="description">
A project based on a user interacitve educational website that help learns to learn he skills they want for free of cost.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5 experience-time-main">
<div class="experience-time">
<h2>
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
14 Dec 2023
</h2>
<h3>IWD Project</h3>
</div><!--/.experience-time-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
<h2>20 Dec 2023</h2>
<h3>DSCA project</h3>
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<h4 class="title">
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
Circutirx
</h4>
<h5>Wireless power transmission</h5>
<p class="description">
A cutting-edge project focused on Wireless Power Transmission within the domain of [DSca]. This innovative venture explores the possibilities of transmitting electrical power without the need for physical connectors, providing a seamless and efficient solution to power various devices.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-offset-1 col-md-5 experience-time-responsive">
<div class="experience-time">
<h2>
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
27 Dec 2023
</h2>
<h3>DAP Project</h3>
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-5">
<div class="timeline">
<div class="timeline-content text-right">
<h4 class="title">
Data anaylsis
</h4>
<h5>Starbucks data analysis</h5>
<p class="description">
I recently undertook a comprehensive data analysis project leveraging a rich dataset from Starbucks. This project aimed to extract meaningful insights and patterns from the data, shedding light on customer behaviors, preferences, and the overall performance of Starbucks outlets.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5 experience-time-main">
<div class="experience-time">
<h2>
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
27 Dec 2023
</h2>
<h3>DAP Project</h3>
</div><!--/.experience-time-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
<h2> 2024</h2>
<h3>kshitij</h3>
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<h4 class="title">
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
Law of Motion and sand rover
</h4>
<h5>Rc areoplane and sand rover</h5>
<p class="description">
The project successfully demonstrated the feasibility of a multi-functional RC system for aerial payload delivery and ground exploration. The integration of the sand rover enhances the system's capabilities for diverse applications, ranging from humanitarian aid to environmental research.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
</ul>
</div><!--.main-timeline-->
</div><!--.experience-content-->
</div>
</section><!--/.experience-->
<!--experience end -->
<!--profiles start -->
<section id="profiles" class="profiles">
<div class="profiles-details">
<div class="section-heading text-center">
<h2>profiles</h2>
</div>
<div class="container">
<div class="profiles-content">
<div class="row">
<div class="col-sm-3">
<div class="single-profile">
<div class="profile-txt">
<a href="https://in.linkedin.com/"target="_blank"><i class="flaticon-themeforest"></i></a>
<div class="profile-icon-name">Linkdin</div>
</div>
<div class="single-profile-overlay">
<div class="profile-txt">
<a href="https://in.linkedin.com/" target="_blank"><i class="flaticon-themeforest"></i></a>
<div class="profile-icon-name">Linkdin</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="single-profile">
<div class="profile-txt">
<a href="https://www.facebook.com/"target="_blank"><i class="flaticon-dribbble"></i></a>
<div class="profile-icon-name">Facebook</div>
</div>
<div class="single-profile-overlay">
<div class="profile-txt">
<a href="https://www.facebook.com/"target="_blank"><i class="flaticon-dribbble"></i></a>
<div class="profile-icon-name">Facebook</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="single-profile">
<div class="profile-txt">
<a href="https://discord.com/"target="_blank"><i class="flaticon-behance-logo"></i></a>
<div class="profile-icon-name">Discord</div>
</div>
<div class="single-profile-overlay">
<div class="profile-txt">
<a href="https://discord.com/"target="_blank"><i class="flaticon-behance-logo"></i></a>
<div class="profile-icon-name">Discord</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="single-profile profile-no-border">
<div class="profile-txt">
<a href="https://github.com/Adithyanmurthy" target="_blank"><i class="flaticon-github-logo"></i></a>
<div class="profile-icon-name">github</div>
</div>
<div class="single-profile-overlay">
<div class="profile-txt">
<a href="https://github.com/Adithyanmurthy" target="_blank"><i class="flaticon-github-logo"></i></a>
<div class="profile-icon-name">github</div>
</div>
</div>
</div>
</div>
</div>
<div class="profile-border"></div>
<div class="row">
<div class="col-sm-3">
<div class="single-profile">
<div class="profile-txt">
<a href="https://www.instagram.com/"target="_blank"><i class="flaticon-flickr-website-logo-silhouette"></i></a>
<div class="profile-icon-name">instagram</div>
</div>
<div class="single-profile-overlay">
<div class="profile-txt">
<a href="https://www.instagram.com/"target="_blank"><i class="flaticon-flickr-website-logo-silhouette"></i></a>
<div class="profile-icon-name">instagram</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="single-profile">
<div class="profile-txt">
<a href="https://www.snapchat.com/"target="_blank"><i class="flaticon-smug"></i></a>
<div class="profile-icon-name">snapchat</div>
</div>
<div class="single-profile-overlay">
<div class="profile-txt">
<a href="https://www.snapchat.com/"target="_blank"><i class="flaticon-smug"></i></a>
<div class="profile-icon-name">snapchat</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="single-profile">
<div class="profile-txt">
<a href="https://web.telegram.org/"target="_blank"><i class="flaticon-squarespace-logo"></i></a>
<div class="profile-icon-name">Telegram</div>
</div>
<div class="single-profile-overlay">
<div class="profile-txt">
<a href="https://web.telegram.org/a/"target="_blank"><i class="flaticon-squarespace-logo"></i></a>
<div class="profile-icon-name">Telegram</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="single-profile profile-no-border">
<div class="profile-txt">
<a href="https://bitbucket.org/"target="_blank"><i class="flaticon-bitbucket-logotype-camera-lens-in-perspective"></i></a>
<div class="profile-icon-name">bitBucket</div>
</div>
<div class="single-profile-overlay">
<div class="profile-txt">
<a href="https://bitbucket.org/"target="_blank"><i class="flaticon-bitbucket-logotype-camera-lens-in-perspective"></i></a>
<div class="profile-icon-name">bitBucket</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!--/.profiles-->
<!--profiles end -->
<!--portfolio start -->
<section id="portfolio" class="portfolio">
<div class="portfolio-details">
<div class="section-heading text-center">
<h2>portfolio</h2>
</div>
<div class="container">
<div class="portfolio-content">
<div class="isotope">
<div class="row">
<div class="col-sm-4">
<div class="item">
<img src="a1.png" alt="new updated image"/>
<div class="isotope-overlay">
<a href="#">
web development
</a>
</div><!-- /.isotope-overlay -->
</div><!-- /.item -->
<div class="item">
<img src="a2.jpeg" alt="portfolio image"/>
<div class="isotope-overlay">
<a href="#">
SI
</a>
</div><!-- /.isotope-overlay -->
</div><!-- /.item -->
</div><!-- /.col -->
<div class="col-sm-4">
<div class="item">
<img src="a4.png" alt="portfolio image"/>
<div class="isotope-overlay">
<a href="#">
DAP
</a>
</div><!-- /.isotope-overlay -->
</div><!-- /.item -->
</div><!-- /.col -->
<div class="col-sm-4">
<div class="item">
<img src="a3.jpeg" alt="portfolio image"/>
<div class="isotope-overlay">
<a href="#">
DSCA
</a>
</div><!-- /.isotope-overlay -->
</div><!-- /.item -->
<div class="item">
<img src="a5.jpeg" alt="portfolio image"/>
<div class="isotope-overlay">
<a href="#">
kshitij
</a>
</div><!-- /.isotope-overlay -->
</div><!-- /.item -->
</div><!-- /.col -->
</div><!-- /.row -->
</div><!--/.isotope-->
</div><!--/.gallery-content-->
</div><!--/.container-->
</div><!--/.portfolio-details-->
</section><!--/.portfolio-->
<!--portfolio end -->
<!--clients start -->
<section id="clients" class="clients">
<div class="section-heading text-center">
<h2>Expected clients</h2>
</div>
<div class="clients-area">
<div class="container">
<div class="owl-carousel owl-theme" id="client">
<div class="item">
<a href="#">
<img src="assets/images/clients/c1.png" alt="brand-image" />
</a>
</div><!--/.item-->
<div class="item">
<a href="#">
<img src="assets/images/clients/c2.png" alt="brand-image" />
</a>
</div><!--/.item-->
<div class="item">
<a href="#">
<img src="assets/images/clients/c3.png" alt="brand-image" />
</a>
</div><!--/.item-->
<div class="item">
<a href="#">
<img src="assets/images/clients/c4.png" alt="brand-image" />
</a>
</div><!--/.item-->
<div class="item">
<a href="#">
<img src="assets/images/clients/c5.png" alt="brand-image" />
</a>
</div><!--/.item-->
<div class="item">
<a href="#">
<img src="assets/images/clients/c6.png" alt="brand-image" />
</a>
</div><!--/.item-->
<div class="item">
<a href="#">
<img src="assets/images/clients/c7.png" alt="brand-image" />
</a>
</div><!--/.item-->
</div><!--/.owl-carousel-->
</div><!--/.container-->
</div><!--/.clients-area-->
</section><!--/.clients-->
</section><!--/.clients-->
<!--clients end -->
<!--contact start -->
<section id="contact" class="contact">
<div class="section-heading text-center">
<h2>contact me</h2>
</div>
<div class="container">
<div class="contact-content">
<div class="row">
<div class="col-md-offset-1 col-md-5 col-sm-6">
<div class="single-contact-box">
<div class="contact-form">
<form>
<div class="row">
<div class="col-sm-6 col-xs-12">
<div class="form-group">
<input type="text" class="form-control" id="name" placeholder="Name*" name="name">
</div><!--/.form-group-->
</div><!--/.col-->
<div class="col-sm-6 col-xs-12">
<div class="form-group">
<input type="email" class="form-control" id="email" placeholder="Email*" name="email">
</div><!--/.form-group-->
</div><!--/.col-->
</div><!--/.row-->
<div class="row">
<div class="col-sm-12">
<div class="form-group">
<input type="text" class="form-control" id="subject" placeholder="Subject" name="subject">
</div><!--/.form-group-->
</div><!--/.col-->
</div><!--/.row-->
<div class="row">
<div class="col-sm-12">
<div class="form-group">
<textarea class="form-control" rows="8" id="comment" placeholder="Message" ></textarea>
</div><!--/.form-group-->
</div><!--/.col-->
</div><!--/.row-->
<div class="row">
<div class="col-sm-12">
<div class="single-contact-btn">
<a class="contact-btn" href="#" role="button">Submit</a>
</div><!--/.single-single-contact-btn-->
</div><!--/.col-->
</div><!--/.row-->
</form><!--/form-->
</div><!--/.contact-form-->
</div><!--/.single-contact-box-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5 col-sm-6">
<div class="single-contact-box">
<div class="contact-adress">
<div class="contact-add-head">
<h3>Adithya N Murthy</h3>
<p>University Design</p>
</div>
<div class="contact-add-info">
<div class="single-contact-add-info">
<h3>phone</h3>
<p>990258666</p>
</div>
<div class="single-contact-add-info">
<h3>email</h3>
<p>[email protected]</p>
</div>
<div class="single-contact-add-info">
<h3>website</h3>
<p>www.adithya.com</p>
</div>
</div>
</div><!--/.contact-adress-->
<div class="hm-foot-icon">
<ul>
<li><a href="#"><i class="fa fa-facebook"></i></a></li><!--/li-->
<li><a href="#"><i class="fa fa-dribbble"></i></a></li><!--/li-->
<li><a href="#"><i class="fa fa-twitter"></i></a></li><!--/li-->
<li><a href="#"><i class="fa fa-linkedin"></i></a></li><!--/li-->
<li><a href="#"><i class="fa fa-instagram"></i></a></li><!--/li-->
</ul><!--/ul-->
</div><!--/.hm-foot-icon-->
</div><!--/.single-contact-box-->
</div><!--/.col-->
</div><!--/.row-->
</div><!--/.contact-content-->
</div><!--/.container-->
</section><!--/.contact-->
<!--contact end -->
<!--footer-copyright start-->
<footer id="footer-copyright" class="footer-copyright">
<div class="container">
<div class="hm-footer-copyright text-center">
<p>
© copyright Adithya N Murthy design and developed
</p><!--/p-->
</div><!--/.text-center-->
</div><!--/.container-->
<div id="scroll-Top">
<div class="return-to-top">
<i class="fa fa-angle-up " id="scroll-top" ></i>
</div>
</div><!--/.scroll-Top-->
</footer><!--/.footer-copyright-->
<!--footer-copyright end-->
<!-- Include all js compiled plugins (below), or include individual files as needed -->
<script src="assets/js/jquery.js"></script>
<!--modernizr.min.js-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script>
<!--bootstrap.min.js-->
<script src="assets/js/bootstrap.min.js"></script>
<!-- bootsnav js -->
<script src="assets/js/bootsnav.js"></script>
<!-- jquery.sticky.js -->
<script src="assets/js/jquery.sticky.js"></script>
<!-- for progress bar start-->
<!-- progressbar js -->
<script src="assets/js/progressbar.js"></script>
<!-- appear js -->
<script src="assets/js/jquery.appear.js"></script>
<!-- for progress bar end -->
<!--owl.carousel.js-->
<script src="assets/js/owl.carousel.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script>
<!--Custom JS-->
<script src="assets/js/custom.js"></script>
</body>