-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
90 lines (84 loc) · 3.59 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE HTML>
<!--
Miniport by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Alex Hillman - Game Programmer Portfolio</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body class="is-preload">
<!-- Navigation bar -->
<nav id="nav">
<ul class="container">
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- Image -->
<!--<article id="top" class="wrapper style1">
<div class="container fade">
<div class="row">
<div class="col-4 col-5-large col-12-medium">
<span class="image fit"><img src="images\Template Images\pic00.jpg" alt="" /></span>
</div>
</div>
</article>-->
<!-- About Section -->
<article id="about" class="wrapper style1">
<div class="container fade">
<header>
<h1>ABOUT</h1>
<p>
Having Graduated from Bristol UWE in November 2022 with a 2:1, I have decided to continue my studies with a postgraduate degree in Commercial Games Development.
By doing this I hope to add to my understanding of programming games and to better my skills at working as part of a team to deliver a full game.
</p>
<br>
<p>
My time studying Games Technology at UWE has lead to a variety of research projects in a range of areas.
Alongside numerous personal projects, these have been used to experiment with a range
of ideas and to become familiar with topics such as networking and AI pathfinding. These have also provided
opportunities to experience different development processes with a variety of game genres, be that a 2D side scrolling platformer
or a 3D first-person shooter, for platforms such as Windows or Android.
</p>
<br>
<a href="pdfs/CV.pdf" target="_blank" class="button large scrolly">View my CV</a>
</header>
</div>
</article>
<article id="contact" class="wrapper style4">
<div class="container medium">
<div class="col-12">
<h2>GET IN CONTACT</h2>
<h3>Find me on ...</h3>
<ul class="social">
<li><a href="https://www.linkedin.com/in/alexander-hillman-394b761b7/" target="_blank" class="icon brands fa-linkedin-in"><span class="label">LinkedIn</span></a></li>
<li><a href="https://twitter.com/AlexHillman2000" target="_blank" class="icon brands fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="https://github.com/Ahillman2000" target="_blank" class="icon brands fa-github"><span class="label">Github</span></a></li>
</ul>
<h3>Or contact me via <a href="mailto:[email protected]"><u>[email protected]</a>.</h3>
<hr />
</div>
</div>
<footer>
<ul id="copyright">
<li>© Alexander Hillman. All rights reserved.</li><li>Design: <a href="http://html5up.net" target="_blank">HTML5 UP</a></li>
</ul>
</footer>
</div>
</article>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>