-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
91 lines (82 loc) · 3.82 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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>About Isaac Turner</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
<link rel="manifest" href="site.webmanifest">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap" rel="stylesheet" type="text/css">
<link rel="apple-touch-icon" sizes="180x180" href="/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png">
<link rel="manifest" href="/cgi-bin/site.webmanifest">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<!-- Add your site or application content here -->
<!--header section with logo and navigation-->
<header>
<div class="main_navbar">
<h1><a href="index.html"style="background-color:black; color:white;">Isaac Turner</a></h1>
<nav>
<ul>
<li><a href="./contact/index.html">Contact</a></li>
<li><a href="./hobbies/index.html">Hobbies</a></li>
<li><a href="./portfolio/index.html">Portfolio</a></li>
</ul>
</nav>
</div>
<div class="sub_navbar">
<ul>
<li></li>
</ul>
</div>
</header>
<!--main section begins here-->
<main>
<div class="maincontent" style="padding-top:65px;">
<div>
<hr class="solid"> <!--Division Between Sections-->
<img src="./img/isaac-turner.jpeg" alt="Isaac Turner" style="float:left; padding-top: 20px; padding-bottom: 40px">
<p style="padding-top:20px;">
Hi, I'm Isaac. I'm a game developer with over 20 years of professional experience. I've helped ship 15 games over the course of my career, including some fairly big titles like Donkey Kong Country Returns: Tropical Freeze and Xenoblade Chronicles 3D.
</p>
<p>
I'm mainly a programmer and level designer with some experience in UI\UX. My skills come from a combination of self-education and direct industry experience.
</p>
<p>
My main languages are C# and Rust. I am very well acquainted with Unity and in my spare time I make games in Bevy. I have experience with Perforce and Git.
</p>
<p>
I avoid web-dev and dynamically-typed languages like the plague... although I have a soft spot for Lua.
</p>
<p>
I'm a punk-rocker, cat person, tabletop RPG enthusiast, video gamer, mushroom forager, guitar player.
</p>
<p>
I currently live in Northfield, MN (USA) with my wife Mika and our cats Kal and Aster.
</p>
<div class="resume">
<a href="./img/isaac-turner-resume.pdf" target="_blank"><img src="./img/resume.png" alt="Resume" style="width:65px; height:65px;">Resume</a>
</div>
</div>
</div>
</main>
<script src="js/vendor/modernizr-3.11.2.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
<script>
window.ga = function () { ga.q.push(arguments) }; ga.q = []; ga.l = +new Date;
ga('create', 'UA-XXXXX-Y', 'auto'); ga('set', 'anonymizeIp', true); ga('set', 'transport', 'beacon'); ga('send', 'pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async></script>
</body>
</html>