-
Notifications
You must be signed in to change notification settings - Fork 0
/
index3.html
38 lines (38 loc) · 1.62 KB
/
index3.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
<!DOCTYPE html>
<html>
<head>
<title>My Homepage</title>
<!-- Link to CSS file to style the page -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<!--<link rel="stylesheet" type="text/css" href="assets/css/reset.css">-->
</head>
<body>
<header>
<h1 id="myname">Matthew Glassman</h1>
<nav>
<ul>
<li id="about"><a href="index.html">About</a></li>
<li id="portfolio"><a href="portfolio.html">Portfolio</a></li>
<li id="contact"><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section id="aboutme">
<header>
<h1 id="me">About Me</h1>
</header>
<img src="assets/images/headshot1.jpg">
<p>Tech Analyst by day and baker by night. That is my current motto. I have been working with technology most of my life. It started with an old Texas Instruments computer and evolved to Commodore 64. Eventually, my family and school were inundated with PCs (Dells).</p>
<p>In my spare time, I enjoy baking something that took a bit of time and patience to learn, but the results have been worth it. I also enjoy dancing and going out to the theater, as well as, traveling. Lastly, I am trying to get back into photography.</p>
</section>
<aside id="connect">
<h3 id="connection">Connect with Me</h3>
<a href="http://www.github.com"><img src="assets/images/githubicon.png" id="github"></a>
<a href="https://www.linkedin.com/in/matthew-glassman-it"><img src="assets/images/linkedinicon.png" id="linkedin"></a>
<a a href="http://www.stackoverflow.com"><img src="assets/images/stackoverflowicon.png" id="stackoverflow"></a>
</aside>
<footer>
<p>@Copyright 2016 Matthew Glassman</p>
</footer>
</body>
</html>