-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (44 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="author" content="Riley Worthington">
<meta name="description" content="Official website of Riley Worthington">
<title>Riley Worthington</title>
<link href="styles/style.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Muli|Sunflower:300" rel="stylesheet">
</head>
<body>
<header>
<nav class="pages">
<ul>
<li>
<a href="about">About</a>
</li>
<li>
<a href="portfolio">Portfolio</a>
</li>
<li>
<a href="contact">Contact</a>
</li>
</ul>
</nav>
<nav class="socials">
<a href="https://github.com/worthirj" title="GitHub link">
<img src="images/GitHub-Mark-120px-plus.png" alt="GitHub link" id="git"/>
</a>
<a href="https://linkedin.com/in/riley-worthington" title="LinkedIn link">
<img src="images/linkedin-128-black.png" alt="LinkedIn link" id="in"/>
</a>
</nav>
</header>
<footer>
<div class="nametag">
Riley.
</div>
<div class="copyright">
©2018 Riley Worthington
</div>
</footer>
</body>
</html>