-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
499 lines (330 loc) · 19.6 KB
/
index.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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
<html xmlns="http://www.w3.org/1999/xhtml">
<meta charset="UTF-8">
<head>
<!--Reference to index.css-->
<link rel="stylesheet" type="text/css" href="index.css">
<!--Reference to three.js-->
<!--jQuery declaration-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<head>
<!--Website metadata -->
<meta charset="UTF-8">
<meta name="description" content="Free Web tutorials">
<meta name="keywords" content="HTML,CSS,XML,JavaScript">
<meta name="Ryan Fabek" content="Electrical Engineering student at the University of Ottawa, 2021">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Roboto|Tomorrow&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap" rel="stylesheet">
<title>Ryan Fabek</title>
<script>
function init() {
//Variable Declarations
var About_div = document.getElementById('About');
var Programming_div = document.getElementById('skills-programming');
var Hardware_div = document.getElementById('skills-hardware');
About.div.classList.add('hidden');
Programming_div.classList.add('hidden');
}
//Function Name: Scroll()
//Parameters: none
//Return: None
//Description: Coordinates the scroll animations for all of the elements
// on the page
function Scroll(){
var top = document.getElementById('nav-section');
var ypos = window.pageYOffset;
console.log(ypos);
if(ypos > 120) {
var About_div = document.getElementById('About');
About_div.classList.add('anim_About');
}
else{
var About_div = document.getElementById('About');
About_div.classList.remove('anim_About');
}
if (ypos > 740) {
var Programming_div = document.getElementById('skills-programming');
Programming_div.classList.add("anim_skills-programming");
var Hardware_div = document.getElementById('skills-hardware');
Hardware_div.classList.add("anim_skills-hardware");
}
else{
var Programming_div = document.getElementById('skills-programming');
Programming_div.classList.remove("anim_skills-programming");
var Hardware_div = document.getElementById('skills-hardware');
Hardware_div.classList.remove("anim_skills-hardware");
}
if (ypos > 1110) {
var Experience_1 = document.getElementById("experience_1");
Experience_1.classList.add("anim_experience");
}
else {
var Experience_1 = document.getElementById("experience_1");
Experience_1.classList.remove("anim_experience");
}
if (ypos > 1270) {
var Experience_1 = document.getElementById("experience_2");
Experience_1.classList.add("anim_experience");
}
else {
var Experience_1 = document.getElementById("experience_2");
Experience_1.classList.remove("anim_experience");
}
}
window.addEventListener("scroll",Scroll);
</script>
</head>
<body>
<header id="nav-section">
<div id="navlist">
<li class="navitem"><a href="#About">About</a></li>
<li class="navitem"><a href="#Education">Education</a></li>
<li class="navitem"><a href="#Skills">Skills</a></li>
<li class="navitem"><a href="#Experience">Experience</a></li>
<li class="navitem"><a href="#Contact">Contact</a></li>
</div>
</header>
<section id="home-section">
<div id="home-section-animation">
<div id="profile">
<img id="profile-pic" src="images-non-animation\resume.png"></img>
<h1 id="name">Ryan Fabek</h1>
<h2 id="subtitle">Future Engineer and Innovator</h2>
<div id="profile-resources">
</div>
</div>
</div>
</section>
<section id="about-section">
<div id="About">
<h2>About Me</h2>
<p>Hello! I'm a third year electrical engineering student at the University of Ottawa, expected to graduate by the end of 2021. I have had the opportunity to explore many differnet streams within electrical engineering such as power generation and telecommunications.</p>
</div>
</section>
<section id="skills-section">
<div class="wrapper-skills">
<div class="skill" id="skills-programming">
<svg version="1.1" id="skills-programming-img" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<g>
<path d="M495.304,61.217H16.696C7.475,61.217,0,68.693,0,77.913v356.174c0,9.22,7.475,16.696,16.696,16.696h478.609
c9.22,0,16.696-7.475,16.696-16.696V77.913C512,68.693,504.525,61.217,495.304,61.217z M478.609,417.391H33.391V194.424h445.217
V417.391z M478.609,161.033H33.391V94.609h445.217V161.033z"/>
</g>
</g>
<g>
<g>
<path d="M443.568,103.247c-12.275,0-22.261,9.986-22.261,22.261c0,12.275,9.985,22.261,22.261,22.261
c12.275,0,22.261-9.986,22.261-22.261C465.829,113.233,455.843,103.247,443.568,103.247z"/>
</g>
</g>
<g>
<g>
<path d="M382.926,103.247c-12.275,0-22.261,9.986-22.261,22.261c0,12.275,9.986,22.261,22.261,22.261s22.261-9.986,22.261-22.261
C405.187,113.233,395.201,103.247,382.926,103.247z"/>
</g>
</g>
<g>
<g>
<path d="M322.285,103.247c-12.275,0-22.261,9.986-22.261,22.261c0,12.275,9.985,22.261,22.261,22.261
c12.275,0,22.261-9.986,22.261-22.261C344.546,113.233,334.56,103.247,322.285,103.247z"/>
</g>
</g>
<g>
<g>
<path d="M235.45,293.193l-54.653-46.504c-7.022-5.976-17.559-5.128-23.535,1.896c-5.976,7.022-5.127,17.559,1.896,23.535
l39.709,33.789l-39.709,33.789c-7.023,5.976-7.871,16.512-1.896,23.535c5.975,7.022,16.512,7.871,23.535,1.896l54.653-46.504
C243.28,311.962,243.28,299.854,235.45,293.193z"/>
</g>
</g>
<g>
<g>
<path id="Cursor" d="M342.022,335.716h-65.954c-9.22,0-16.696,7.475-16.696,16.696s7.475,16.696,16.696,16.696h65.954
c9.22,0,16.696-7.475,16.696-16.696S351.242,335.716,342.022,335.716z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
<div id="skills-list">
<h2>Programming</h2>
<h3>Languages</h3>
<ul>
<li>Python</li>
<li>C</li>
</ul>
<h3>Frameworks</h3>
</div>
</div>
<div class="skill" id="skills-hardware">
<svg id="skills-hardware-img" viewBox="0 0 64 64" width="512" xmlns="http://www.w3.org/2000/svg">
<g id="led"><path d="m43 41v-17a11 11 0 0 0 -22 0v17a3.009 3.009 0 0 0 -3 3v2a3.009 3.009 0 0 0 3 3h6v9h2v-9h6v13h2v-13h6a3.009 3.009 0 0 0 3-3v-2a3.009 3.009 0 0 0 -3-3zm-20-17a9 9 0 0 1 18 0v17h-4v-8a1 1 0 0 0 -1-1h-3a1.033 1.033 0 0 0 -.71.29l-1.02 1.02-.38-.76a.977.977 0 0 0 -.89-.55h-2a1 1 0 0 0 -1 1v8h-4zm12 10v7h-6v-7h.38l.73 1.45a1 1 0 0 0 .73.54 1.032 1.032 0 0 0 .87-.28l1.7-1.71zm9 12a1 1 0 0 1 -1 1h-22a1 1 0 0 1 -1-1v-2a1 1 0 0 1 1-1h22a1 1 0 0 1 1 1z"/>
<path d="m32 18v-2a8.009 8.009 0 0 0 -8 8h2a6.006 6.006 0 0 1 6-6z"/>
<path id="light-ray-3" d="m31 2h2v6h-2z"/>
<path id="light-ray-4" d="m11.908 9.908h2v6h-2z" transform="matrix(.707 -.707 .707 .707 -5.347 12.909)"/>
<path id="light-ray-5" d="m2 31h6v2h-6z"/>
<path id="light-ray-1" d="m56 31h6v2h-6z"/>
<path id="light-ray-2" d="m48.092 11.908h6v2h-6z" transform="matrix(.707 -.707 .707 .707 5.837 39.908)"/>
</g>
</svg>
<h2>Hardware</h2>
<h3>Development Boards</h3>
<ul>
<li>Raspberry Pi</li>
<li>Arduino</li>
</ul>
</div>
<div class="skill">
<svg id="skills-software-img" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g id="XMLID_816_">
<g id="XMLID_1663_">
<g id="XMLID_709_">
<path id="XMLID_710_" d="M240.93,364.99c-2.63,0-5.21,1.069-7.07,2.93c-1.859,1.86-2.93,4.43-2.93,7.07 c0,2.63,1.07,5.21,2.93,7.069c1.86,1.86,4.44,2.931,7.07,2.931s5.21-1.07,7.07-2.931c1.859-1.87,2.93-4.439,2.93-7.069 c0-2.641-1.07-5.21-2.93-7.07C246.14,366.06,243.56,364.99,240.93,364.99z"/>
<path id="XMLID_734_" d="M431.77,335.12c-2.64,0-5.22,1.069-7.08,2.93c-1.859,1.86-2.92,4.43-2.92,7.07 c0,2.63,1.061,5.21,2.92,7.069c1.86,1.86,4.44,2.931,7.08,2.931c2.63,0,5.2-1.07,7.07-2.931c1.86-1.87,2.93-4.439,2.93-7.069 s-1.069-5.21-2.93-7.07C436.97,336.189,434.399,335.12,431.77,335.12z"/>
<path id="XMLID_735_" d="M135.939,287c-2.63,0-5.21,1.069-7.069,2.93c-1.86,1.86-2.931,4.44-2.931,7.07s1.07,5.21,2.931,7.069 c1.859,1.86,4.439,2.931,7.069,2.931s5.21-1.07,7.07-2.931c1.86-1.859,2.93-4.439,2.93-7.069s-1.069-5.21-2.93-7.07 S138.569,287,135.939,287z"/>
<path id="XMLID_744_" d="M511.999,108.537c0-5.523-4.478-10-10-10H486.6c-2.103-7.023-4.907-13.797-8.385-20.255l10.886-10.887 c3.905-3.905,3.905-10.237,0-14.142l-30.354-30.353c-3.906-3.905-10.236-3.905-14.143,0l-10.886,10.886 c-6.459-3.478-13.231-6.282-20.255-8.386L413.463,10c0-5.522-4.478-10-10-10l-42.927,0c-5.522,0-10,4.477-10,10v15.437 c-7.009,2.108-13.768,4.914-20.212,8.391l-10.929-10.929c-3.906-3.905-10.236-3.905-14.143,0l-30.354,30.354 c-2.38,2.381-3.301,5.662-2.78,8.746H40.033C17.959,62,0,79.959,0,102.034v275.933C0,400.041,17.959,418,40.033,418h158.895v34 h-23.964c-19.87,0-36.036,16.166-36.036,36.036V502c0,5.522,4.478,10,10,10h184c5.522,0,10-4.478,10-10v-13.964 c0-19.87-16.165-36.036-36.035-36.036h-23.965v-34h158.804c22.075,0,40.034-17.959,40.034-40.033V214.081l7.335-7.335 c1.875-1.875,2.929-4.419,2.929-7.071c0-2.652-1.054-5.196-2.929-7.071l-10.929-10.928c3.478-6.445,6.283-13.203,8.392-20.212 l15.437,0c2.652,0,5.196-1.054,7.071-2.929s2.929-4.419,2.929-7.071L511.999,108.537z M322.928,488.036V492h-164v-3.964 c0-8.843,7.193-16.036,16.036-16.036h131.929C315.734,472,322.928,479.193,322.928,488.036z M262.928,452h-44v-34h44V452z M461.766,377.967c0,11.046-8.987,20.033-20.034,20.033H40.033C28.987,398,20,389.013,20,377.967v-22.85h371.771 c5.522,0,10-4.478,10-10s-4.478-10-10-10H20V307h76.333c5.522,0,10-4.478,10-10s-4.478-10-10-10H20V102.034 C20,90.987,28.987,82,40.033,82h243.976c-2.609,5.327-4.781,10.849-6.485,16.537l-15.523,0c-2.652,0-5.196,1.054-7.071,2.929 S252,105.885,252,108.537l0.001,42.926c0,5.523,4.478,10,10,10h15.56c2.1,6.979,4.892,13.71,8.349,20.131l-11.01,11.011 c-3.905,3.905-3.905,10.237,0,14.142l30.354,30.353c3.906,3.905,10.236,3.905,14.143,0l11.01-11.01 c6.421,3.458,13.153,6.25,20.131,8.349L350.537,250c0,5.522,4.478,10,10,10l42.927-0.001c5.522,0,10-4.477,10-10v-15.524 c6.993-2.094,13.739-4.884,20.174-8.342l10.967,10.967c1.876,1.875,4.419,2.929,7.071,2.929s5.195-1.054,7.071-2.929l3.019-3.019 V377.967z M492,141.463h-13.157c-4.689,0-8.749,3.259-9.764,7.838c-2.253,10.173-6.244,19.789-11.864,28.578 c-2.532,3.949-1.98,9.144,1.348,12.472l9.325,9.325l-16.212,16.211l-9.353-9.353c-3.045-3.043-7.696-3.799-11.547-1.874 c-0.31,0.154-0.61,0.325-0.901,0.51c-8.788,5.599-18.397,9.571-28.561,11.809c-4.585,1.009-7.851,5.071-7.851,9.766L393.463,240 l-22.927,0v-13.281c0-4.69-3.259-8.75-7.838-9.764c-10.148-2.247-19.744-6.227-28.52-11.828c-1.606-1.026-3.474-1.571-5.38-1.571 c-2.652,0-5.198,1.055-7.074,2.93l-9.4,9.401l-16.211-16.212l9.4-9.4c3.328-3.328,3.88-8.522,1.349-12.471 c-5.596-8.771-9.571-18.36-11.817-28.503c-1.014-4.579-5.074-7.838-9.764-7.838l-13.281,0l0.001-22.926h13.253 c4.694,0,8.757-3.266,9.767-7.851c2.234-10.153,6.202-19.753,11.794-28.538c2.53-3.948,1.979-9.143-1.349-12.47l-9.354-9.354 l16.212-16.211l9.324,9.324c3.429,3.428,8.729,3.845,12.613,1.258c8.75-5.572,18.316-9.533,28.437-11.773 c4.578-1.014,7.838-5.074,7.838-9.763L370.537,20l22.927,0v13.13c0,4.694,3.266,8.757,7.851,9.766 c10.191,2.244,19.824,6.231,28.629,11.852c0.294,0.188,0.598,0.359,0.909,0.515c3.847,1.924,8.503,1.17,11.547-1.874l9.276-9.277 l16.211,16.212l-9.276,9.276c-0.466,0.466-0.884,0.976-1.249,1.524c-2.207,3.31-2.239,7.61-0.098,10.949 c5.615,8.801,9.599,18.427,11.839,28.611c1.009,4.585,5.071,7.851,9.767,7.851l13.131,0V141.463z"/>
<path id="XMLID_999_" d="M382,68c-34.187,0-62,27.813-62,62s27.813,62,62,62s62-27.813,62-62S416.187,68,382,68z M382,172 c-23.159,0-42-18.841-42-42s18.841-42,42-42s42,18.841,42,42S405.159,172,382,172z"/>
<path id="XMLID_1012_" d="M163.67,187.22c-2.641,0-5.21,1.07-7.07,2.93c-1.87,1.86-2.93,4.44-2.93,7.08 c0,2.63,1.06,5.21,2.93,7.07c1.86,1.86,4.43,2.92,7.07,2.92c2.63,0,5.21-1.06,7.07-2.92c1.859-1.86,2.93-4.44,2.93-7.07 c0-2.64-1.07-5.22-2.93-7.08C168.88,188.29,166.3,187.22,163.67,187.22z"/>
<path id="XMLID_1094_" d="M241.719,179.822c0.687-2.562,0.327-5.291-0.999-7.588l-16.885-29.244 c-2.761-4.782-8.877-6.422-13.66-3.66l-9.618,5.553c-3.159-2.234-6.501-4.167-10.006-5.786V128c0-5.523-4.478-10-10-10h-33.769 c-5.522,0-10,4.477-10,10v11.097c-3.505,1.62-6.847,3.552-10.006,5.786l-9.618-5.553c-2.297-1.326-5.027-1.684-7.588-0.999 c-2.563,0.687-4.746,2.362-6.072,4.659l-16.884,29.244c-2.762,4.783-1.123,10.898,3.66,13.66l9.622,5.556 c-0.172,1.918-0.259,3.847-0.259,5.774s0.087,3.856,0.259,5.774l-9.622,5.556c-4.783,2.761-6.422,8.877-3.66,13.66l16.884,29.244 c1.326,2.297,3.51,3.973,6.072,4.659c2.561,0.686,5.291,0.328,7.588-0.999l9.618-5.553c3.159,2.234,6.501,4.167,10.006,5.786 v11.097c0,5.522,4.478,10,10,10h33.769c5.522,0,10-4.478,10-10v-11.097c3.505-1.62,6.847-3.552,10.006-5.786l9.618,5.553 c4.784,2.761,10.898,1.123,13.66-3.66l16.885-29.244c1.326-2.297,1.686-5.026,0.999-7.588c-0.687-2.562-2.362-4.746-4.659-6.072 L227.437,203c0.173-1.919,0.26-3.848,0.26-5.774s-0.087-3.855-0.26-5.775l9.623-5.556 C239.356,184.568,241.032,182.384,241.719,179.822z M206.773,188.213c0.612,2.95,0.923,5.982,0.923,9.012 s-0.311,6.062-0.923,9.012c-0.877,4.225,1.055,8.536,4.791,10.693l6.835,3.946l-6.885,11.924l-6.846-3.952 c-3.739-2.159-8.445-1.674-11.666,1.207c-4.56,4.078-9.8,7.108-15.575,9.006c-4.104,1.349-6.877,5.18-6.877,9.5v7.89h-13.769 v-7.89c0-4.32-2.773-8.151-6.877-9.5c-5.775-1.898-11.016-4.929-15.575-9.006c-3.22-2.881-7.925-3.367-11.666-1.207l-6.846,3.952 l-6.884-11.924l6.834-3.946c3.736-2.157,5.668-6.468,4.791-10.693c-0.611-2.947-0.922-5.979-0.922-9.012s0.311-6.064,0.922-9.012 c0.877-4.225-1.054-8.535-4.791-10.693l-6.834-3.946l6.884-11.923l6.846,3.952c3.739,2.16,8.445,1.674,11.666-1.207 c4.56-4.078,9.8-7.108,15.575-9.006c4.104-1.349,6.877-5.18,6.877-9.5V138h13.769v7.89c0,4.32,2.773,8.151,6.877,9.5 c5.775,1.898,11.016,4.929,15.575,9.006c3.219,2.879,7.924,3.366,11.666,1.207l6.846-3.953l6.885,11.924l-6.835,3.946 C207.828,179.678,205.896,183.989,206.773,188.213z"/>
</g>
</g>
</g>
<h2>Software</h2>
<h3>Drafting</h3>
<ul>
<li>AutoCAD</li>
</ul>
</div>
</div>
</section>
<section id="experience-section">
<h2 id="Experience">Experience</h2>
<div class="wrapper-experiences">
<div class="job" id="experience_1">
<h3>Telecom Engineer (Co-op)</h3>
<h4>Royal Canadian Mounted Police</h4>
<ul id="Left">
<li>Working with telecommunication engineers to evaluate existing lawful telecom intercept
solutions with upcoming telecommunication technologies</li>
<li>Developing software in Linux environment by utilizing Python and C</li>
<li>Obtained and hold valid top secret level security clearance</li>
</ul>
</div>
<div class="job" id="experience_2">
<h3>Indepentent Contractor</h3>
<h4>Odandetech Consulting Engineers</h4>
<ul>
<li>Working with senior electrical engineer to design solutions and standards
for electrical utilities and developers</li>
<li>Utilizing AutoCAD 2D and 3D tools to illustrate engineering solutions while adhering to standards and regulations.</li>
</ul>
</div>
<div class="job" id="experience_3">
<h3>Senior Technical Student (Co-op)</h3>
<h4>Odandetech Consulting Engineers</h4>
<ul>
<li>Working with senior electrical engineer to design solutions and standards
for electrical utilities and developers</li>
<li>Utilizing AutoCAD 2D and 3D tools to illustrate engineering solutions while adhering to standards and regulations.</li>
<li>Implemented a Unit Price Management System (UPCMS), increasing ease of providing accurate estimates for clients.</li>
</ul>
</div>
<div class="job" id="experience_4">
<h3>Senior Technical Student (Co-op)</h3>
<h4>Odandetech Consulting Engineers</h4>
<ul>
<li>Working with senior electrical engineer to design solutions and stadards
for electrical utilities and developers</li>
<li>Utilizing AutoCAD 2D and 3D tools to illustrate engineering solutions while adhering to standards and regulations.</li>
<li>Implemented a Unit Price Management System (UPCMS), increasing ease of providing accurate estimates for clients.</li>
</ul>
</div>
<div class="job" id="experience_5">
<h3>Barista</h3>
<h4>Second Cup</h4>
<ul>
<li>Prepared and served customers conveying a positve and professional attidude.</li>
<li>Responsed effectivly to complex requests in a fast paced work environment</li>
</ul>
</div>
<div class="job" id="experience_6">
<h3>Pool Technician</h3>
<h4>Brander's Pool Service</h4>
<ul>
<li>Preformed maintenance, repairs and installations for pool equiptment.</li>
<li>Gained basic knowledge in installing and repairing gas, water and electrical systems</li>
<li>Interacted with clients and provided quality customer service.</li>
</ul>
</div>
</div>
</section>
<h2 id="Projects">Projects</h2>
<div class="wrapper-projects">
<div #id="project-UPCMS" class="project">
<img class="image-project" src="C:\Users\ryanf\Desktop\Personal-Website\images-non-animation\resume.png"></img>
<h3>Unit Price Management System</h3>
<h4>Utilized Python, PYQT5</h4>
</div>
<div class="project">
<img src=""></img>
<h3>Stegography Program</h3>
<h4>Utilized Python</h4>
</div>
<div class="project">
<img src=""></img>
<h3>TCP Port Tester</h3>
<h4>Utilized Python, Scapy, Socket</h4>
</div>
<div class="project">
<img src=""></img>
<h3>TEST</h3>
<h4>Utilized Python, Scapy, Socket</h4>
</div>
</div>
<h2 id="Blog">Blog<h2>
<section id="contact-section">
<div id="contact">
<h2>Contact</h2>
<form>
<label>First Name</label>
<input type="text" placeholder="Your name..">
<label>Last Name</label>
<input type="text" placeholder="Your last name..">
<textarea></textarea>
</form>
</div>
</section>
<footer id="footer">
<p>Ryan Fabek 2020</p>
</footer>
</div>
</body>