-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
78 lines (67 loc) · 2.37 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
77
<!DOCTYPE html>
<html>
<head>
<title>About | mccrina.org</title>
<link rel="stylesheet" href="/css/site.css">
<script src="../scripts/jquery-2.0.3.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var x = "nathan.mc";
x = x + "crina@";
x = x + "zo";
x = x + "ho.co";
x = x + "m";
document.getElementById("botscantreadthis").innerHTML = x;
});
</script>
</head>
<body>
<nav id="navbar">
<h1>Site Links</h1>
<p><a href="/index.html">Home</a></p>
<p><a href="/blog.html">Blog</a></p>
<p><a href="/about.html">About</a></p>
<p><a href="/enigma/index.html">Enigma Machine</a></p>
<p><a href="/lightsout/">Lights Out</a></p>
<h1>External Links</h1>
<p><a href="http://fly-casual.net/">fly-casual.net</a></p>
</nav>
<div class="page_content">
<h3>About Me</h3>
<p>Hi there! My name is Nathan McCrina. I am a software
developer living outside of Atlanta in Georgia, USA. I have
a math degree from Gordon State College in Barnesville, GA
(Go Highlanders!). My interests include web programming,
chess, and reading.</p>
<h3>Contact Info</h3>
<p>You can reach me at <span id="botscantreadthis"></span></p>
<h3>Links</h3>
<p>Other places I live on the Internet:</p>
<ul>
<li><a href="http://www.chess.com/members/view/nmccrina">Chess.com</a></li>
<li><a href="https://www.facebook.com/nathan.mccrina">Facebook</a></li>
<li><a href="https://twitter.com/nmccrina">Twitter</a></li>
<li><a href="https://github.com/nfmccrina">GitHub</a></li>
</ul>
<h3>Reading List</h3>
<p>I don't have anything in progress at the moment. :(</p>
<p>Upcoming:</p>
<ul>
<li>????</li>
</ul>
<p>Finished:</p>
<ul>
<li>"A Collection of Essays by George Orwell",
George Orwell</li>
<li>"Hackers: Heroes of the Computer Revolution",
Steven Levy</li>
<li>"What If? Serious Scientific Answers to Absurd
Hypothetical Questions", Randall Munroe</li>
<li>"The Last Lion" (vol. 1),
William Manchester</li>
<li>"The Last Lion" (vol. 2),
William Manchester</li>
</ul>
</div>
</body>
</html>