-
Notifications
You must be signed in to change notification settings - Fork 0
/
My skills.html
157 lines (132 loc) · 6.53 KB
/
My 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html>
<head>
<title>My skills</title>
<link rel="stylesheet" href="page_style.css">
<link rel="stylesheet" href="Contact_me_style.css">
<link rel="stylesheet" href="navigation_bar.css">
<link rel="stylesheet" href="My skills_style.css">
</head>
<body>
<ul class="menu">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="My portfolio.html">My portfolio</a>
</li>
<li>
<a href="My skills.html">My skills</a>
</li>
<li>
<a href="Contact me.html">Contact me</a>
</li>
<div id="content">
<h1> My Skills Overview </h1>
<h2>Technical Skills</h2>
<div id="skill">
<img src="programming.png" alt="picture" width="10%">
</div>
<h3>Programming skill</h3>
<ul class="proficiency">
<li class="proficiency">
<label for="Java">Java level :</label>
<meter id="javaMeter" min="0" max="100" low="25" high="60" optimum="80" value="50"></meter>
</li>
<li class="proficiency">
<label for="Python">Python level :</label>
<meter id="pythonMeter" min="0" max="100" low="25" high="60" optimum="80" value="50"></meter>
</li>
<li class="proficiency">
<label for="C">C level :</label>
<meter id="cMeter" min="0" max="100" low="25" high="60" optimum="80" value="20"></meter>
</li>
</ul>
<p>
I have studied Java, Python, and C languages through courses in the ITM department.
I have undertaken various projects such as creating a drawing program in Java,
plotting graphs in Python, and attempting hacking in C as part of my coursework.
Although my skills are still lacking,
I aspire to become someone who can fill the progress bar above with continuous effort.
</p>
<div id="skill">
<img src="office01.png" alt="picture" width="10%">
</div>
<h3>Office Skills</h3>
<ul class="proficiency">
<li class="proficiency">
<label for="Excell">Excell level :</label>
<meter id="excellMeter" min="0" max="100" low="25" high="60" optimum="80" value="65"></meter>
</li>
<li class="proficiency">
<label for="PPT">PPT level :</label>
<meter id="pptMeter" min="0" max="100" low="25" high="60" optimum="80" value="80"></meter>
</li>
<li class="proficiency">
<label for="Word">Word level :</label>
<meter id="wordMeter" min="0" max="100" low="25" high="60" optimum="80" value="70"></meter>
</li>
</ul>
<p>
I have a keen interest in design. I enjoy organizing various materials into a single,
neat document. When creating PowerPoint presentations,
I invest a lot of time to make them visually appealing and strive to compile
class materials into concise notes.
Additionally, I have improved my office skills by using Excel for financial calculations
in courses such as IT investment analysis and fundamental of finance.
</p>
<h2>Soft Skill</h2>
<div id="skill">
<img src="communication03.png" alt="picture" width="10%">
</div>
<h3>Commnication skill</h3>
<ul class="proficiency">
<li class="proficiency">
<label for="Collaboration">Collaboration level :</label>
<meter id="collaborationMeter" min="0" max="100" low="25" high="60" optimum="80" value="90"></meter>
</li>
<li class="proficiency">
<label for="Feedback">Feedback level :</label>
<meter id="feedbackMeter" min="0" max="100" low="25" high="60" optimum="80" value="80"></meter>
</li>
<li class="proficiency">
<label for="Flexibility">Flexibility level :</label>
<meter id="flexibilityMeter" min="0" max="100" low="25" high="60" optimum="80" value="80"></meter>
</li>
</ul>
<p>
I enjoy collaborating with others to create excellent results.
While conflicts may arise during the process of reconciling various opinions and receiving feedback,
I believe such conflicts contribute to producing better outcomes.
I actively participate in cooperation, provide and receive feedback,
and maintain a respectful and flexible attitude toward others' opinions.
</p>
<div id="skill">
<img src="self-growth.png" alt="picture" width="10%">
</div>
<h3>Self-growth skill</h3>
<ul class="proficiency">
<li class="proficiency">
<label for="Respect">Respect level:</label>
<meter id="respecMeter" min="0" max="100" low="25" high="60" optimum="80" value="70"></meter>
</li>
<li class="proficiency">
<label for="Responsibility">Responsibility level:</label>
<meter id="responsibilityMeter" min="0" max="100" low="25" high="60" optimum="80" value="80"></meter>
</li>
<li class="proficiency">
<label for="Self-development">Self-development level:</label>
<meter id="selfDevelopmentMeter" min="0" max="100" low="25" high="60" optimum="80" value="60"></meter>
</li>
</ul>
<p>
I prefer to think carefully and speak after thorough consideration before engaging in conversation,
striving to maintain a positive mindset to respect both others and myself.
I am committed to doing my best in assigned tasks,
constantly striving for self-improvement, and always aiming to show growth.
</p>
<h2>Thank you for reading !</h2>
</div>
</ul>
</body>
</html>