-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (63 loc) · 2.91 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
<!DOCTYPE html>
<html>
<head>
<title>Home - chucknelson.org</title>
<link rel="stylesheet" type="text/css" href="stylesheets/site.css">
<link rel="icon" type="image/png" href="//www.gravatar.com/avatar/3337626f152d18464ff2ca15dd2f687e.png">
<script src="javascripts/jquery-1.10.2.min.js"></script>
<script src="javascripts/starry-sky.js"></script>
<meta charset="utf-8">
<meta name="description" content="chucknelson.org">
<meta name="author" content="Chuck Nelson">
</head>
<body>
<canvas id="starrySky"></canvas>
<div id="contentArea">
<div id="profile">
<div id="info" style="overflow: auto;">
<div id="myName">
<h1>Chuck Nelson</h1>
<p class="subtitle">
I'm a Distinguished Software Engineer at Citizens Bank.<br />
I currently reside in Charlotte, NC.
</p>
</div>
<div id="gravatar">
<img src="//www.gravatar.com/avatar/3337626f152d18464ff2ca15dd2f687e?size=160" alt="gravatar image"
class="framedImage">
</div>
</div>
<div id="badges">
<p id="badges-intro" class="subtitle">See what I've been up to:</p>
<br />
<div id="linkedin" class="badge">
<a href="//www.linkedin.com/pub/chuck-nelson/4/76a/617">
<img src="//www.linkedin.com/img/webpromo/btn_myprofile_160x33.png" width="160" height="33"
border="0" alt="View Chuck Nelson's profile on LinkedIn"
title="View Chuck Nelson's profile on LinkedIn">
</a>
</div>
<div id="stackoverflow" class="badge">
<a href="//stackoverflow.com/users/158740/chucknelson">
<img src="//stackoverflow.com/users/flair/158740.png?theme=dark" width="208" height="58"
alt="Profile for chucknelson at Stack Overflow, Q&A for professional and enthusiast programmers"
title="profile for chucknelson at Stack Overflow, Q&A for professional and enthusiast programmers">
</a>
</div>
<div id="github" class="badge">
<a href="//github.com/chucknelson">
<img src="images/github_logo_social_coding_outlined.png"
alt="View Chuck Nelson's github profile" style="height: 58px;">
</a>
</div>
</div>
</div>
</div>
<div id="footer">
<p>Copyright <span id="current-year"></span> Chuck Nelson, chucknelson.org</p>
</div>
<script type="text/javascript">
$('#current-year').text(new Date().getFullYear());
</script>
</body>
</html>