-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
51 lines (39 loc) · 1.65 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
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Marie Dagan</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" media="(max-width=960px)" href="assets/css.style.css">
</head>
<body>
<header>
<div class="wrapper">
<a href="index.html" id="logo">Marie Dagan</a>
<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="container" class="wrapper">
<div id="content" class="module">
<h1>About Me</h1>
<img src="assets/images/baby.jpg" width="200" class="baby">
<p>My name is Marie Dagan and I'm excited about learning code! At this moment, I am just starting my journey, but I hope to be able to show off my skills in no time thanks to attending the Houston Coding Bootcamp. My background is in Chemistry and although I've have loved working in laboratories it has taught valuable skills that I know I will use in my current path towards to being a great coder.</p>
</div>
<div id="social" class="module">
<h2>Connect with Me</h2>
<a href="https://github.com/Bronzeowl"><img src="assets/images/github.png"></a>
<a href="https://www.linkedin.com/in/mariedagan/"><img src="assets/images/linkedin.png"></a>
<a href="http://stackoverflow.com/users/7586676/marie-d?tab=profile"><img src="assets/images/overflow.png"></a>
</div>
</div>
<footer> © 2017 Marie Dagan</footer>
</body>
</html>