-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
52 lines (44 loc) · 2.12 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
52
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Marcela Errazquin</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"/>
</head>
<body>
<header id="masthead">
<div class="container">
<a href="index.html" id="logo">Marcela Errazquin</a>
<nav>
<a href="index.html">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<div id="main-container" class="container">
<section class="main-section">
<h1>About Me</h1>
<img src="assets/images/profile.jpg" class="auth-image" alt="Marcela Errazquin"/>
<p>Hi! My name is Marcela, and I'm a technical professional with a passion for creating.</p>
<p>I'm a Senior Interactive Developer with 10 years web experience, and 5 years in the DOOH (Digital-Out-Of-Home) industry. Strong understanding of Object Oriented Programming techniques. I am a self-starter and excited about new technologies.</p>
</section>
<section class="sidebar">
<div id="connect">
<h2>Connect with Me</h2>
<a href="https://github.com/merrazquin" target="_blank"><img src="assets/images/if_github_square_black_107109.png" class="social" alt="Github"/></a>
<a href="https://www.linkedin.com/in/marcela-errazquin-9b39264/" target="_blank"><img src="assets/images/if_linkedin_square_color_107091.png" class="social" alt="LinkedIn"/></a>
<a href="https://stackoverflow.com/users/426609/marcela?tab=profile" target="_blank"><img src="assets/images/so-icon.png" class="social" alt="StackOverflow"/></a>
</div>
</section>
</div>
<footer>
<div class="container">
© Copyright 2018 Marcela Errazquin
</div>
</footer>
</body>
</html>