-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (48 loc) · 2.36 KB
/
index.html
File metadata and controls
51 lines (48 loc) · 2.36 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home | Tom Fasham</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul class="inline-list">
<li class="li"><button class="hidden-button" onclick="window.location.href = `index.html`"><strong>HOME</strong></button></li>
<li class="li"><button class="hidden-button" onclick="window.location.href = `works.html`"><strong>MY WORK</strong></button></li>
<li class="li"><button class="hidden-button" onclick="window.location.href = `contact.html`"><strong>CONTACT ME</strong></button></li>
</ul>
</nav>
</header>
<div class="content">
<div class="banner">
<div class="home-title">
<h1>TOM FASHAM</h1>
<h2>GAME DESIGNER</h2>
</div>
</div>
<div class="article">
<h2>A BIT ABOUT ME</h2>
<p>Hey, I'm Tom Fasham, a 3rd year Game Design student at QUT & independent game developer. </p>
<p>I'm working out of Brisbane, Australia on a number of Independent & University video game projects. Check out my stuff!</p>
</div>
<div class="article">
<h2>SKILLS & ABILITIES</h2>
<p>I've been working with the Unity engine for ~3 years, having used it to make a number of student projects, jam games, and prototypes. I most often take on a designer role, having done character, quest, level, and systems design across a range of projects.. </p>
<p>I back that up with a strong programming ability, specifically gameplay programming. I've handled Player Controllers, NPC AI, Interactions Programming, and have on occasion delved into more intensive Systems Programming.</p>
</div>
<div class="article">
<h2>WHAT AM I UP TO?</h2>
<p>At the moment, I'm in my 3rd of 4 years of a Bachelor of Games and Interactive Environments at QUT, at the moment working on building out my portfolio and skills.</p>
<p>In my free time, I'm working on PongDemonium!, a chaotic party game based on Pong (More in the works tab!).</p>
</div>
</div>
<footer>
<ul class="inline-list">
<li> Developed by Tom Fasham for DXB111.</li>
<li> All images & works shown are my own.</li>
<li> Contact me <a href="contact.html">here</a> for questions & concerns. </li>
</ul>
</footer>
</body>
</html>