-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
76 lines (53 loc) · 1.88 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>About</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<script src="js/template.js"></script>
</head>
<body>
<!-- header -->
<header id="header"></header>
<!-- content -->
<div class="content-container">
<div class="content">
<h1>About</h1>
<hr>
<img class="profile-image" src="images/profile.jpg">
<p>
My name is Pearce Michal, and I am a software developer and artist with a wide and varied skillset that I have cultivated over a lifetime of self driven curiosity.
These skills include game design, web development, photography, and MIDI composition, just to name a few.
</p>
I love to experiment with the technical and artistic capabilities of computers, and I am always seeking new tools and techniques to add to my
ever growing arsenal of creative productivity.
<p>
</p>
<p>
I have spent a great deal of time working on various projects, such as contributing to open source software, participating in game development community events,
and even creating and publishing my own video games through my game studio, Binary Nomad Games. Above all else, I enjoy the process of creation, and all of the frustration
and exultation that comes with it.
</p>
<p>
You can follow me on Twitter to get updates about what I'm working on, and I also post devlogs to my Itch.IO page, and upload gameplay videos to Youtube.
</p>
</div>
<div class="content">
<h1>Contact</h1>
<hr>
<p>
Email: <a href="mailto:[email protected]">[email protected]</a>
</p>
<p>
Twitter: <a href="https://twitter.com/BinaryNomadDev">@BinaryNomadDev</a>
</p>
<p>
Youtube: <a href="https://www.youtube.com/channel/UCyHEUIAyyJPM-515HQtLGfg">Binary Nomad</a>
</p>
</div>
</div>
<!-- end content container -->
<!-- footer -->
<footer id="footer"></footer>
</body>
</html>