-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAboutMePage.html
432 lines (393 loc) · 16.8 KB
/
AboutMePage.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
<!DOCTYPE html>
<head>
<meta name="referrer" content="origin">
<title>Steven Twerdochlib's Portfolio</title>
<style>
body {
min-height: 100vh;
background-color: black;
}
.dropbtn {
position: relative;
background: linear-gradient(to right, white 50%, black 50%);
background-size: 200% 100%;
background-position:right bottom;
color: white;
width: 100%;
border: solid;
border-width: 1px 1px 1px 0px;
border-color: #66ccff;
border-spacing: 0;
height: 100%;
line-height: 4vw;
font-size: 2vw;
display: inline-block;
z-index: 999;
}
.dropdown {
position: relative;
text-align: center;
z-index: 999;
}
.dropdown-content {
display: none;
position: absolute;
z-index: 999;
height: 50px;
}
.dropdown-content a {
position: relative;
background: linear-gradient(to right, white 50%, black 50%);
background-size: 200% 100%;
background-position:right bottom;
border: solid;
border-width: 1px 1px 1px 1px;
border-color: #66ccff;
color: white;
vertical-align: middle;
padding: #px #px;
text-decoration: none;
display: block;
height: 4vw;
line-height: auto;
font-size: 2vw;
z-index: 999;
}
.dropdown-content a:hover {background-position:left bottom; transition: all .8s ease-out; color: black;}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {background-position:left bottom; transition: all .8s ease-out; color: black;}
html {
scroll-behavior: smooth;
}
/* Style the tab */
.tab {
text-align: center;
overflow: hidden;
border: 1px solid #ccc;
background-color: #f1f1f1;
font-size: 20px;
}
/* Style the buttons that are used to open the tab content */
.tab button {
background-color: inherit;
float: center;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
}
/* Change background color of buttons on hover */
.tab button:hover {
background-color: #ddd;
}
/* Create an active/current tablink class */
.tab button.active {
background-color: #ccc;
}
/* Style the tab content */
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid #ccc;
border-top: none;
}
.tabcontent {
animation: fadeEffect 1s; /* Fading effect takes 1 second */
}
/* Go from zero to full opacity */
@keyframes fadeEffect {
from {opacity: 0;}
to {opacity: 1;}
}
* {box-sizing:border-box}
/* Slideshow container */
.slideshow-container {
max-width: 1000px;
position: relative;
margin: auto;
}
/* Next & previous buttons */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
padding: 16px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
background-color: rgba(0,0,0,0.8);
}
/* Caption text */
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom:20px;
width: 100%;
text-align: center;
}
.mySlides {
display:none;
}
.active-slide {
display:block;
}
/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
/* The dots/bullets/indicators */
.dot {
cursor:pointer;
height: 13px;
width: 13px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active, .dot:hover {
background-color: #717171;
}
/* Fading animation */
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
}
@-webkit-keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
#sticky {
position: sticky;
top: 0;
z-index: 3;
}
* {
margin: 0;
padding: 0;
}
</style>
</head>
<body style="margin:0; padding:0; background-color: black;">
<div id="sticky">
<table cellspacing="0" cellpadding="0" style="position: sticky; top:0; border-spacing: 0; color: white; background-color: black; margin:auto; padding:0; width: 100%; height: 1vw; white-space:nowrap; table-layout:fixed; z-index:3">
<tr>
<th style="width: 5%; border: solid; border-width: 0px 0px 0px 0px; border-color: #66ccff;">
</th>
<th style="text-align:left; width: 40%; border: solid; border-width: 0px 0px 0px 1px; border-color: #66ccff; line-height: 2vw;">
<a href="mailto:[email protected]" style="font-size:2vw; color: white; text-decoration: none; text-align:left;">  [email protected]</a>
</th>
<th style="width: 32%; border: solid; border-width: 0px 0px 0px 0px; border-color: #66ccff;">
</th>
<th style="width: 10%; border: solid; border-width: 0px 0px 0px 0px; border-color: #66ccff;">
<a href="#AboutMe" style="font-size:2vw; color: white; text-decoration: none;"><b>About Me</b></a>
</th>
<th style="width: 10%; border: solid; border-width: 0px 1px 0px 0px; border-color: #66ccff;">
<a href="CVPage.pdf" target="_blank" style="font-size:2vw; color: white; text-decoration: none;"><b> My CV </b></a>
</th>
<th style="width: 5%; border: solid; border-width: 0px 0px 0px 0px; border-color: #66ccff;">
</th>
</tr>
</table>
<table cellspacing="0" cellpadding="0" style="position: sticky; top:0; border-spacing: 0; background-color: black; margin:auto; padding:0; width: 100%; height: 4vw; white-space:nowrap; table-layout:fixed; z-index:3">
<tr>
<th style="width: 5%; border: solid; border-width: 1px 0px 1px 0px; border-color: #66ccff;">
</th>
<th style="width: 23%; border: solid; border-width: 0px 0px 0px 1px; border-color: #66ccff;">
<div class="dropdown">
<button class="dropbtn" onclick="location.href='index.html#topOfPage'" type="button"><b>Home</b></button>
</div>
</th>
<td style="width: 23%;">
<div class="dropdown">
<button class="dropbtn" onclick="location.href='index.html#ProjectsPage'" type="button"><b>Projects</b></button>
<div class="dropdown-content">
<a href="index.html#WebPageProject"><b> Portfolio Web Page </b></a>
<a href="index.html#UniMajorProject"><b> University Major Project </b></a>
<a href="index.html#GroupProject"><b> University Group Project (App) </b></a>
<a href="index.html#GraphicsProject"><b> Graphics Project </b></a>
<a href="index.html#ALevelProject"><b> A Level Project </b></a>
</div>
</div>
</td>
<td style="width: 23%;">
<div class="dropdown">
<button class="dropbtn" onclick="location.href='index.html#TutorialsPage'" type="button"><b>Tutorials</b></button>
<div class="dropdown-content">
<a href="index.html#AndroidClickerGameTutorial"><b> Android Clicker Game Tutorial </b></a>
<a href="index.html#RobloxSimulatorTutorial"><b> Roblox Simulator Tutorial </b></a>
<a href="index.html#BasicAndroidGameTutorial"><b> Basic Android Game Tutorial </b></a>
</div>
</div>
</td>
<td style="width: 23%;">
<div class="dropdown">
<button class="dropbtn" onclick="location.href='index.html#ContactPage'" type="button"><b>Contact</b></button>
</div>
</td>
<th style="width: 5%; border: solid; border-width: 1px 0px 1px 0px; border-color: #66ccff;">
</td>
</tr>
</table>
</div>
<div style="z-index:-1; margin: 0; padding-left: 10%; padding-top: 8%; padding-bottom: 17%; text-align: left; font-size: 7vw; color: white; background-image: url('VR Background Image.jpeg'); background-repeat: no-repeat; background-size: 100% auto;">
<p style="margin: 0; text-align: left; font-size: 7vw; color: white;">
Steven <br>Twerdochlib's <br>Portfolio
</p>
</div>
<table style="background-color: black; margin:auto; padding:0; height: auto; width: 100%; white-space:nowrap;">
<tr style="height: 4vw; font-size: 1vw; color: white;">
<td colspan="7" style="text-align: center">
<p>Strong Experience With:</p>
</td>
</tr>
<tr>
<td style="width: 20%; text-align: center">
</td>
<td style="width: 12%; text-align: center">
<img src="Unity_Logo.png" alt="" border=3 style="width: 6vw; height: 6vw;"></img>
</td>
<td style="width: 12%; text-align: center">
<img src="android_studio_logo.jpg" alt="" border=3 style="width: 6vw; height: 6vw;"></img>
</td>
<td style="width: 12%; text-align: center">
<img src="C_Logo.png" alt="" border=3 style="width: 6vw; height: 6vw;"></img>
</td>
<td style="width: 12%; text-align: center;">
<img src="Java_Logo.jpg" alt="" border=3 style="width: 6vw; height: 6vw;"></img>
</td>
<td style="width: 12%; text-align: center">
<img src="HTML_CSS_Logo.jpg" alt="" border=3 style="width: 6vw; height: 6vw;"></img>
</td>
<td style="width: 20%; text-align: center">
</td>
</tr>
<tr style="height: 4vw;">
</tr>
</table>
<table style="background-color: black; height: 100%; ">
<tr>
<td>
<table>
<tr>
<td>
<p style="line-height: 5vw"> <br></p>
<a name="AboutMe"><h1 style="padding-top: 7vw; margin-top: -7vw;"></h1></a>
<h1 style="text-align: center; margin:auto; padding:0; color: white; font-size: 5vw; height: auto; line-height: 5vw">About Me</h1>
<p style="line-height: 5vw"> <br></p>
<table style="margin:auto; padding:0; height: 100%; width: 50%; table-layout: fixed;">
<tr>
<td valign="top" style="color: black; font-size: 20px; padding:0 15px 0 15px;">
<div class="tab">
<button class="tablinks" onclick="openTab(event, 'Introduction')" id="defaultOpen">Introduction</button>
<button class="tablinks" onclick="openTab(event, 'My Hobbies')">My Hobbies/Interests</button>
<button class="tablinks" onclick="openTab(event, 'Personal Achievements')">Personal Achievements</button>
</div>
<div id="Introduction" class="tabcontent">
<h3 style="color: white; font-size: 2vw; text-align: center;">Introduction</h3>
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw"><br /></p>
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw">
My name is Steven Twerdochlib, and I am an enthusiastic and eager to learn recent graduate who is now looking to extend my knowledge and experience. I have studied Bsc Computer Science at Aberystwyth University, where I received a 2.1 in my degree scheme. </p>
<br />
<p style="text-align: center; margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw">
<i>“If you can imagine it, you can achieve it. If you can dream it, you can become it”.<br /> ~ William Arthur Ward</i><br /></p>
<br />
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw">
I have always been inspired by this quote as through programming this statement becomes true as we can bend the
laws of physics to make or become anything we want and this is precisely why my main interests in work center around programming
(more specifically, but no limited to, games development) however, I also have experience with administrative work.</p>
<p style="line-height: 20px"> <br></p>
</div>
<div id="My Hobbies" class="tabcontent">
<h3 style="color: white; font-size: 2vw; text-align: center;">My Hobbies/Interests</h3>
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw"><br /></p>
<ul style="margin:auto; padding:1vw; color: white; font-size: 1vw; height: auto; line-height: 1vw">
<li><b>Programming</b></li>
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw">I will occassionally work on some programming projects/tutorials in my spare time. At the moment my most anticipated project/tutorial to start is creating a beautiful 3D environment in Unity3D. From this I can add other features like a moveable 3D character but for now just learning to create beautiful scenary is what I am looking to do in the near future.<br /></p>
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw"><br /></p>
<li><b>VR (Virtual Reality)</b></li>
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw">VR is one of my greatest interests, although I do not currently own a VR headset. I try to stay up-to-date with the current trends of VR hardware and software as well as the opinions on VR from the general public by accessing various websites and watching a variety of Youtube channels such as: ThrillSeeker, SteveKnows and Virtual Reality Oasis. I absolutely hope that one day in the future I can will have the chance to work on the creation of a VR game.<br /></p>
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw"><br /></p>
<li><b>Gaming</b></li>
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw">A common pasttime for most people including myself is playing games, the game I play most freuqently is League of Legends. Playing games gives great insight into what makes games and their communities enjoyable as well as providing a great social activity for playing with friends.</p>
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw"><br /></p>
<li><b>Drawing</b></li>
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw">Drawing is the least frequent hobby of mine but one I enjoy nonetheless. The most frequent type of drawings I do are anime drawings, I choose to do anime drawings because they tend to have the most simplistic tonal colour change but make up for it with their detailed shapes.</p>
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw"><br /></p>
<li><b>Cross-stitching</b></li>
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw">Cross-stitching is a very uncommon hobby which is when a person creates patterns, using a needle and coloured threads, through a cross-stitching canvas to create an image which can then be made into a variety of objects such as; pictures and pillows. This hobby is particularly special to me because it provides me time to where I can do a peaceful pasttime while listening to something (I usually listen to an Audible book).</p>
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw"><br /></p>
</ul>
<p style="line-height: 20px"> <br></p>
</div>
<div id="Personal Achievements" class="tabcontent">
<h3 style="color: white; font-size: 2vw; text-align: center;">Personal Achievements</h3>
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw"><br /></p>
<ul style="margin:auto; padding:1vw; color: white; font-size: 1vw; height: auto; line-height: 1vw">
<li><b>UKIEPC Competition</b></li>
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw">I participated as part of a team from Aberystwyth University in the UKIEPC. UKIEPC is a programming competition with teams from each university competing to complete programming challenges correctly in the shortest amount of time.<br /></p>
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw"><br /></p>
<li><b>Built my own PC</b></li>
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw">I built my own PC by purchasing the individual components such as; CPU, motherboard, PSU, PC case, RAM, GPU, etc... And combining these individual pieces of hardware to create a fully functional PC.<br /></p>
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw"><br /></p>
<li><b>Level 1 in British Sign Language (BSL)</b></li>
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw">I have a Level 1 certificate in British Sign Language for completing a BSL course at Aberystwyth University.</p>
<p style="margin:auto; padding:0; color: white; font-size: 1vw; height: auto; line-height: 1vw"><br /></p>
</ul>
<p style="line-height: 20px"> <br></p>
</div>
<script type="text/javascript">
function openTab(evt, tabName) {
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
document.getElementById(tabName).style.display = "block";
evt.currentTarget.className += " active";
}
// Get the element with id="defaultOpen" and click on it
document.getElementById("defaultOpen").click();
</script>
</td>
</tr>
</table>
<p style="line-height: 10vw"> <br></p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>