-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (41 loc) · 2.25 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">
<head>
<meta charset="UTF-8">
<title>Eric King Portfolio</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/reset.css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,400i|Oxygen:400,700" rel="stylesheet">
</head>
<body>
<header class = "headerWrapper clearfix">
<h1 class = "mainHeader">Eric King -- Full Stack Web Developer</h1>
<nav>
<ul class="mainNav">
<li><a href="index.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
</ul>
</nav>
</header>
<div class="container">
<div class = "row">
<div class="colOne">
<h2 class = "secondaryHeaders">About Me</h2>
<hr>
<img class = "profile" src="assets/images/ProfilePic.jpg" alt="Profile Picture-Eric">
<p class = "text clearfix">Hello, my name is Eric King and I am a Full Stack Web Developer student. I am 28 years old and currently living in Charlotte, North Carolina. I am passionate about technology and love to find out how things work. This passion has brought me on this path and I am beyond excited to see where my journey will lead me. </p>
<p class = "text clearfix">I love a good beer and always relish the opportunity to learn something new or have a great conversation. In my free time I enjoy playing or watching video games, movies, and TV shows. I enjoy listening to podcasts and spending quality time with my Fiance, Rachel. I am a big time nerd who loves all sorts of nerdy things and sometimes love just reading books or comics.</p>
</div>
<div class="colTwo">
<h2 class = "secondaryHeaders">Connect with Me</h2>
<hr>
<a href="https://github.com/TheKingdomDev"><img class = "logo" src="assets/images/GitHub.png" alt="Github"></a>
<a href="https://www.linkedin.com/in/eric-king-86a1b6132?trk=nav_responsive_tab_profile"><img class = "logo" src="assets/images/LinkedIn.png" alt="LinkedIn"></a>
<a href="http://stackoverflow.com/users/7299973/thekingdomdev?tab=profile"><img class = "logo" src="assets/images/StackOverflow.png" alt="StackOverflow"></a>
</div>
</div>
</div>
<footer class = "mainFooter">© Copywright 2017 Eric King</footer>
</body>
</html>