-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (63 loc) · 1.99 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Nick Black - Wilmington, NC - Software Engineer</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
<link rel="stylesheet" type="text/css" media="screen" href="./timer.css" />
</head>
<body>
<div class="main-container">
<header class="flexContainer">
<h1>Nick Black</h1>
</header>
<nav>
<ul>
<li><a href="index.html">home</a></li>
<li><a href="resume.html">resume</a></li>
<li><a href="portfolio.html">portfolio</a></li>
<li><a href="todo.html">todo</a></li>
<li><a href="https://github.com/nickBlack4">github</a></li>
<li>
<a href="http://www.nickblackguitar.com" style="color: greenyellow;"
>music</a
>
</li>
</ul>
</nav>
<div class="containerForBorderRadius">
<div class="contentContainer">
<p>
<div class="github-chart">
<img
src="http://ghchart.rshah.org/553b87/nickblack4"
alt="Nick Black's Github chart"
/>
</div>
</p>
<hr />
<p>
I'm <strong>Nick Black</strong>, a software developer and musician living in Wilmington, NC.
</p>
<p>
If I'm not working, I'm hanging out with my wife and our incredible
animals.
</p>
<hr />
<p id="nick-image">
<img src="images/nick.jpg" alt="nick black picture" />
</p>
</div>
</div>
<!-- main container -->
</div>
<footer>
<div class="timer-container">
<div class="countup" id="timer"></div>
</div>
</footer>
<script src="./timer.js"></script>
</body>
</html>