-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
executable file
·238 lines (188 loc) · 7.39 KB
/
resume.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" >
<meta name="viewport" content="width=device-width, initial-scale=1.0" >
<meta
name="description"
content="Resume section displaying Collins Ushi's educational qualification, clubs and technologies.">
<title>Ushi - Resume</title>
<link rel="stylesheet" href="./styles/style.css" >
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#ffc107">
<meta name="apple-mobile-web-app-title" content="Resume">
<meta name="application-name" content="Ushi's Resume">
<meta name="msapplication-TileColor" content="#00aba9">
<meta name="theme-color" content="#00796b">
</head>
<body>
<header class="main-header">
<div class="nav-wrapper">
<div class="logo">
<a href="./index.html">
<img src="./images/logo.png" alt="Site logo" >
</a>
</div>
<nav>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="#" class="active">Resume</a></li>
<li><a href="./skills.html">Skills</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="topSection">
<div class="wrapper">
<div class="topBoxContainer">
<div class="topBox-only">
<article>
<header>
<h1>Education and Technologies </h1>
</header>
<p>
I have 2 years hands-on experience in UX/UI design and implementation.
My delivery rate is appreciable as I leverage W3C standards, modern tech trends and stacks in
executing projects.
</p>
</article>
</div>
</div>
</div>
</div>
<div class="wrapper">
<div class="boxContainer">
<div class="box box-1">
<article>
<header>
<h1>My Education</h1>
<h2>B.Engr Electrical/Computer</h2>
<p>
I received a bachelor degree in electrical/computer engineering from
the Federal University of Technology, Minna in 2011.
</p>
<p>
During school days. I was actively engaged in the following clubs:
</p>
<br>
<ol type="I">
<li>African Caribbean</li>
<li>Fight Club</li>
<li>Student Union Government (SUG)</li>
<li>Innovation Club</li>
<li>Touch Lives Club:
<ul class="bullet-list-type">
<li>Social welfare section</li>
<li>Advocacy section</li>
</ul>
</li>
</ol>
</header>
</article>
</div>
<div class="table-section">
<section>
<header>
<h1>My Technologies</h1>
</header>
<table class="stack-table">
<thead>
<tr>
<th>Stack</th>
<th>Proficiency</th>
<th> Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>HTML</td>
<td>Excellent</td>
<td>
<span>
HyperText Markup Language
It is one of the standardised markup languages that
defines the layout of a webpage
</span>
</td>
</tr>
<tr>
<td>CSS3</td>
<td>Excellent</td>
<td>
<span>
Cascading Style Sheets Level 3 (CSS3) is the iteration of the CSS standard used in the styling and formatting of Web pages
</span>
</td>
</tr>
<tr>
<td>JavaScript</td>
<td>Very Good</td>
<td>
<span>
an object-oriented computer programming language commonly used to create interactive effects within web browsers.
</span>
</td>
</tr>
<tr>
<td>Java</td>
<td>Good</td>
<td>
<span>
A programming language primarily used for Internet-based applications.
</span>
</td>
</tr>
<tr>
<td>PHP</td>
<td>Average</td>
<td>
<span>
Hypertext Preprocessor is a server side scripting language that is embedded in HTML. It is used to manage dynamic content, databases, session tracking, even build entire e-commerce sites.
</span>
</td>
</tr>
</tbody>
</table>
</section>
</div>
</div><!-- #END boxContainer-->
</div>
</main>
<footer class="main-footer">
<div class="footer-wrapper">
<p>
<strong>NAME</strong> Collins USHI <br>
<strong>E-MAIL</strong> mail@student.staffs.ac.uk
</p>
<br>
<hr>
<br>
<div class="align-center">
<p> © Copyright 2021, Designed by USHI.</p>
</div>
</div>
</footer>
<script>
//check whether browser support service workers
if ('serviceWorker' in navigator) {
//wait until page loaded to avoid delaying rendering
window.addEventListener('load', function () {
//register service worker
navigator.serviceWorker.register('serviceworker.js').then(
function (registration) {
console.log('Service worker registration successful',
registration);
},
function (err) {
console.log('Service worker registration failed', err);
});
});
}
</script>
</body>
</html>