-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExamplehw1.html
79 lines (47 loc) · 2.06 KB
/
Examplehw1.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
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>About Me</title>
<link rel="stylesheet" type="text/css" href="positioning.css">
</head>
<body>
<header>
<div id="header-wrapper">
<h1> Michael Mann </h1>
<nav>
<ul>
<li><a href="index.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<div id="content-area">
<div id="content-wrapper">
<!-- Content area that changes between the pages of the portfolio website -->
<div class="main-content">
<h1> About Me </h1>
<hr>
<img id="bio-image" src="http://lorempixel.com/200/200/food/" atl="Image of Michael">
<p>I currently work for the Defense Forensic Science Center as a DNA Analyst, processing crimes from all branches of the US military. Web development is natural transition from science, problem-solving with logical thinking and sequntially troublshooting when things don't work as they should. In the future, I am excited to tackle app development and mobile websites. </p>
<p>I love working with local businesses to connect them with the community and spotlight their unique offerings. Focusing on a smooth and easy user experience, I bring my clients' passions to life and to their customers through engaging websites. </p>
</div>
<!-- End of Content area -->
<div id="sidebar">
<h3>Connect with Me </h3>
<hr>
<ul>
<li><a href="https://github.com/mmann30" target="_blank"><img src="assets/images/github_square.png" alt="Github icon"></a></li>
<li><a href="https://www.linkedin.com/in/michael-mann-369263140/" target="_blank"><img src="assets/images/linkedin-square-social-media.png" atl="Linkedin icon"></a></li>
<li><a href="http://stackoverflow.com/users/7960443/michael-mann" target="_blank"><img src="assets/images/stackoverflow.png" atl="Stackoverflow icon"></a></li>
</ul>
</div>
</div>
</div>
<footer>
<p>©Copyright 2017 Michael Mann </p>
</footer>
</body>
</html>