-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskills.html
135 lines (131 loc) · 4.57 KB
/
skills.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="css/second.css" />
</head>
<body>
<div class="wrapper">
<div class="section-heading-container">
<button
class="btn btn-color-3"
onclick="window.location.href='/'"
>
<span>Back to Home</span>
</button>
</div>
<section id="experience">
<div class="section-heading-container">
<p class="section__text__p1">Explore My</p>
<h1 class="title">Ability</h1>
</div>
<div class="experience-details-container">
<div class="about-containers2">
<div id="exp1" class="details-container2">
<h2 class="experience-sub-title">Software Development & Web Technologies</h2>
<div class="article-container">
<article>
<span><i class="fab fa-html5"></i></span>
<div>
<h3>HTML, CSS, JavaScript & PHP</h3>
<p>Basic</p>
<p>Level 2 out of 5</p>
</div>
</article>
<article>
<span><i class="fab fa-java"></i></span>
<div>
<h3>Java, Android Studio & Flutter</h3>
<p>Beginner</p>
<p>Level 1 out of 5</p>
</div>
</article>
<article>
<span><i class="fab fa-python"></i></span>
<div>
<h3>Python, C++, VB.NET</h3>
<p>Beginner</p>
<p>Level 1 out of 5</p>
</div>
</article>
<article>
<span><i class="fab fa-git-alt"></i></span>
<div>
<h3>Version Control (Git & GitHub)</h3>
<p>Basic</p>
<p>Level 2 out of 5</p>
</div>
</article>
<article>
<span><i class="fas fa-database"></i></span>
<div>
<h3>SQL & Database Management</h3>
<p>Beginner</p>
<p>Level 1 out of 5</p>
</div>
</article>
</div>
</div>
<div id="exp2" class="details-container2">
<h2 class="experience-sub-title">IT & Computer Skills</h2>
<div class="article-container">
<article>
<span><i class="fas fa-laptop"></i></span>
<div>
<h3>Laptop & PC Repair</h3>
<p>Intermediate</p>
<p>Level 4 out of 5</p>
</div>
</article>
<article>
<span><i class="fab fa-linux"></i></span>
<div>
<h3>Linux Systems & Administration</h3>
<p>Beginner</p>
<p>Level 1 out of 5</p>
</div>
</article>
<article>
<span><i class="fas fa-video"></i></span>
<div>
<h3>Video Editing</h3>
<p>Basic</p>
<p>Level 2 out of 5</p>
</div>
</article>
<article>
<span><i class="fas fa-file-alt"></i></span>
<div>
<h3>MS Office Software</h3>
<p>Basic</p>
<p>Level 2 out of 5</p>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<div class="section-heading-container">
<button
class="btn btn-color-3"
onclick="window.location.href='/'"
>
<span>Back to Home</span>
</button>
</div>
<button id="backToTop" title="Back to Top" style="display: none;">↑</button>
</div>
<script src="script.js"></script>
</body>
</html>