Skip to content

Commit 7872112

Browse files
committed
Added UI/UX
1 parent af9eb24 commit 7872112

File tree

1 file changed

+25
-22
lines changed

1 file changed

+25
-22
lines changed

index.html

Lines changed: 25 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -45,27 +45,26 @@ <h1>About Me</h1>
4545

4646
<section class="colorlib-about" data-section="about">
4747
<div class="container">
48-
<div class="row">
49-
<script type="text/javascript">
50-
var domains = ["Software Development", "Web Designing", "Android Applications", "Machine Learning"];
51-
var icons = ["desktop", "code", "android", "user"];
52-
var urls = ["swe.html", "web.html", "android.html", "ml.html"];
53-
var ids = [3, 4, 2, 1];
54-
for (let i = 0; i < domains.length; i++) {
55-
var dir = (ids[i] % 2 == 0) ? "Right" : "Left";
56-
document.write(
57-
'<div class="col-sm-3 animate-box" data-animate-effect="fadeIn' + dir + '">\
58-
<a href="' + urls[i] + '" >\
59-
<div class="services color-' + ids[i] + '">\
60-
<span class="icon2"><i class="fa fa-' + icons[i] + '"></i></span>\
61-
<h3>' + domains[i] + '</h3>\
62-
</div>\
63-
</a>\
64-
</div>'
65-
);
66-
}
67-
</script>
68-
</div>
48+
<script type="text/javascript">
49+
var domains = ["Software Development", "Web Designing", "Android Applications", "Machine Learning", "UI / UX Designing"];
50+
var icons = ["desktop", "code", "android", "user", "pencil"];
51+
var urls = ["swe.html", "web.html", "android.html", "ml.html", "uiux.html"];
52+
var ids = [3, 4, 2, 1, 3];
53+
for (let i = 0; i < domains.length; i++) {
54+
var dir = (ids[i] % 2 == 0) ? "Right" : "Left";
55+
document.write(
56+
((i % 5 == 0) ? '<div class="row">' : '') +
57+
'<div class="col-sm-4 col-xs-4 col-md-4 col-lg-2 animate-box" data-animate-effect="fadeIn' + dir + '">\
58+
<a href="' + urls[i] + '" >\
59+
<div class="services color-' + ids[i] + '">\
60+
<span class="icon2"><i class="fa fa-' + icons[i] + '"></i></span>\
61+
<h3>' + domains[i] + '</h3>\
62+
</div>\
63+
</a>\
64+
</div>'+ ((i % 5 == 4) ? '</div>' : '')
65+
);
66+
}
67+
</script>
6968
</div>
7069
</section>
7170

@@ -80,9 +79,13 @@ <h2>Skills</h2>
8079
<hr>
8180
</div>
8281
</div>
83-
<p class="animate-box" data-animate-effect="fadeInLeft">Some of the significant aptitudes which will assist me with achieving your objectives.</p>
82+
<div class="container">
83+
<p class="col animate-box" data-animate-effect="fadeInLeft"><b>Some of the significant aptitudes which will assist me with achieving your objectives.</b></p>
84+
</div>
85+
8486
<div class="container">
8587
<div class="row">
88+
8689
<script type="text/javascript">
8790
var skills = ["C/C++(STL)", "Python(Flask)", "React.js", "Javascript", "Java/Android", "MySQL/MongoDB", "GitHub/Git", "Robot Operating System(ROS)"];
8891
var value = [80, 85, 70, 80, 60, 60, 90, 60];

0 commit comments

Comments
 (0)