-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (96 loc) · 3.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Felix Chapman</title>
<meta name="description" content="">
<meta name="author" content="Felix Chapman">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/style.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
<!-- Game of Life -->
<script src="gol.js"></script>
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container">
<div class="row">
<div class="page" style="margin-top: 25%">
<div id="header">
<canvas id="animation" class="animation-fade"></canvas>
<div id="title">
<h1>Felix Chapman</h1>
<h4>Software Developer</h4>
</div>
<ul id="navbar">
<li>
<a href="mailto:[email protected]">Email</a>
</li>
<li>
<a href="https://github.com/aelred">github</a>
</li>
<li>
<a href="https://cv.ael.red">CV</a>
</li>
<li>
<a href="https://tetris.ael.red">tetris</a>
</li>
<li>
<a href="https://blog.ael.red">blog</a>
</li>
</ul>
</div>
<div id="content">
<p>
I'm a software developer with experience in backend
development primarily in Java, Python and Rust.
</p>
<p>
I enjoy programming in my spare time. Have a look at
<a href="https://github.com/aelred">my github page</a>.
My favourites:
</p>
<ul>
<li>
<a href="https://lichess.org/@/skakoui">Skakoui</a>
- A traditional chess bot that competes online.
</li>
<li>
<a href="https://nes.ael.red">NES emulator</a>
- A NES emulator written in Rust.
</li>
<li>
<a href="https://tetris.ael.red">Tetris</a>
- Project to learn Rust, using SDL and Wasm.
</li>
<li>
<a href="https://github.com/aelred/starling">Starling</a>
- A functional programming language in Python.
</li>
<li>
<a href="https://codenames.ael.red">Codenames</a>
- A game where players guess words from clues.
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>