-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbio.html
More file actions
66 lines (57 loc) · 2.16 KB
/
bio.html
File metadata and controls
66 lines (57 loc) · 2.16 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-136768252-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-136768252-1');
</script>
<title>NPhillips Portfolio - Bio</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/unholy-core.css">
<link rel="stylesheet" href="css/unholy-utility.css">
<link rel="stylesheet" href="css/unholy-navigation.css">
<link rel="stylesheet" href="css/custom.css">
<script src="js/custom.js"></script>
</head>
<body>
<nav id="hamnav">
<label for="hamburger">☰</label>
<input type="checkbox" id="hamburger"/>
<div id="hamitems">
<a href="index.html">Home</a>
<a class="active" href="bio.html">Biography</a>
<a href="portfolio.html">Portfolio</a>
<a href="writing.html">Writing</a>
<a href="version.html">Version</a>
</div>
</nav>
<div class="container">
<div class="row">
<h1 class="center-bio-title">Biography</h1>
</div>
<div class="row">
<div class="box-medium">
<div class="card">
<div class="card-header">
Neil Phillips
</div>
<div class="card-content">
I have been a software developer for 5 years now.<br>
In a previous life I was a scientist, then I wrote software for those scientist and now I make digital solutions in a more general sense.<br>
Outside of work I enjoy writing flash fiction horror stories, links can be found on the writing page.<br>
I also play blues guitar, kickbox, partaking in a 1001 beer challenge and im doing an OU degree in software engineering.
</div>
</div>
</div>
<div class="box-medium">
<img class="circle shadow" src="images/me.jpg" alt="photo of neil">
</div>
</div>
</div>
</body>
</html>