-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
70 lines (70 loc) · 3.2 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>Tomasz Zając - devblog</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/simple-grid.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
<script src="js/main.js"></script>
</head>
<body>
<div class="container-fluid">
<header class="row">
<div class="col-1 col-12-sm" id="logo-container">
<img src="assets/logo.png" class="logo">
</div>
<div class="col-7" id="site-title-container">
<h1>Tomasz Zając</h1>
<h2>Programming, game development, and pretty much anything to do with computers.</h2>
</div>
<nav class="col-4">
<a href="index.php">Blog</a>
<a href="about.html">About me</a>
<a href="showcase.html">Showcase</a>
</nav>
</header>
<div class="row">
<main class="col-12" id="about-me">
<h1>About me</h1>
<h2>Brief</h2>
<p>
If you happen to have stumbled upon this page - welcome!
My name is Tom, I'm currently a Computer Science student at University of Lincoln, UK. That is also my current workplace - I am part of the ICT department's associate developer team.
Natively I am Polish, but I live in Britain and enjoy it here.
</p>
<p>
You can find my <a href="https://www.linkedin.com/in/tomzajac">LinkedIn profile here</a>. For contact enquiries please email <a href="mailto:[email protected]">[email protected]</a>.
</p>
<h2>Interests</h2>
<p>
My interests are... all over the place, really.
Mainly it is game design & development, graphics programming and computer architectures. In addition, at some point in the near future I plan on delving into how video editing software is built - and perhaps have a go at writing my own open-source editor.
</p>
<h2>Skills & qualifications</h2>
<h3>Higher Education</h3>
<h4>University of Lincoln</h4>
<small>2017 - 2020 | Lincoln, Lincolnshire, United Kingdom</small>
<p>
Currently working on graduating with a BSc in Computer Science, aiming to achieve a 1st or 2:1 degree.
</p>
<h3>Further Education</h3>
<h4>Lincoln College</h4>
<small>2015 - 2017 | Lincoln, Lincolnshire, United Kingdom</small>
<p>
Achieved a Distinction*-Distinction*-Distinction grade. Subjects included game development & technologies, web development (design, front-end, back-end, e-commerce), computer systems (knowledge & repair skills), computer networks (history, types, design, equipment, setup & maintenance) and communication skills (employment etc.).
I've also undertaken 30 hours of work experience at the KNOWHOW Repair Centre in Newark, Nottinghamshire as part of the course.
</p>
<h3>School</h3>
<h4>Cherry Willingham Community School</h4>
<small>2014 - 2015 | Cherry Willingham, Lincolnshire, United Kingdom</small>
<p>
Having just moved to the UK, I used Year 11 as a period to familiarise myself with living in the country. I ended up with grades C and above in English, Maths, Science, ICT, Statistics and Polish.
</p>
</main>
</div>
<footer>
<p>Tomasz Zając © 2018</p>
</footer>
</div>
</body>
</html>