-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
57 lines (49 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sam Smith</title>
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/about.css">
<meta charset="utf-8">
</head>
<body>
<div id="wrapper">
<div class="header">
<h1>Sam Smith</h1>
<nav>
<a class="navlinks" href="about.html" target="_self">About</a>
<a class="navlinks" href="portfolio.html" target="_self">Portfolio</a>
<a class="navlinks" href="contact.html" target="_self">Contact</a>
</nav>
</div>
<br>
<br>
<div class="content">
<aside>
<div class="aside">
<h2 class="sideHeader">Connect with Me</h2>
<hr class = "sideHR">
<ul>
<li><a href="https://www.linkedin.com/in/sam-smith-844755125"><img class="icon" src="assets/images/Linkedin.png" alt="Linkedin"></a></li>
<li><a href="https://github.com/sbs863"><img class="icon" src="assets/images/Git.png" alt="GitHub"></a></li>
<li><a href="https://stackoverflow.com/users/6605956/sam-smith"><img class="icon" src="assets/images/Stack.png" alt="Stack Overflow"></a></li>
</ul>
</div>
</aside>
<section>
<h2 class="secHeader"> About Me </h2>
<hr>
<img id="profilepic" src="assets/images/sam.jpg" alt="Me">
<p>
First and foremost thanks for taking the time to look at my work. Everyone hates writing about themselves, I'm no exception. I'll try to keep this brief so that you have more time to examine the content I've created. I graduated in 2013 from UT Austin with a Bachelor degree in Environmental Science and Sustainability. It took a little time, but I landed a job in my field and have been comfortable for the last few years. However, it was a bit of a dead end, and I didn't have much of a desire to return for a Master's. With many friends, and some family, working in tech, coupled with a lifelong captivation with computers, I decided to embark on the road to becoming a full stack web developer. As of right now I'm exactly one week into my training, so please forgive any glaring errors or semantic misteps.
</p>
</section>
<footer class="foot-box">
<div class="copyright">
© Copyright 2016 Sam Smith
</div>
</footer>
</div>
</div>
</body>
</html>