-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (48 loc) · 1.95 KB
/
index.html
File metadata and controls
48 lines (48 loc) · 1.95 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About me - Tamara Rivera</title>
<script src="https://use.fontawesome.com/728dc040fb.js"></script>
<link rel="stylesheet" type="text/css" href="styles/first-stylesheet.css">
</head>
<body>
<nav>
<ul>
<div>
<li><a href="./index.html"><i class="fa fa-info"></i> About me</a></li>
<li><a href="./projects.html"><i class="fa fa-briefcase"></i> Projects</a></li>
</div>
</ul>
</nav>
<main>
<article>
<header>
<h1>About me</h1>
</header>
<p>Hi! I'm Tamara Rivera.</p>
<p>I'm a software developer engineer from Santiago, Chile and I'm currently living in Seattle.</p>
<p>I have 3 years of experience working as a full stack developer and I'm currently improving my skills as frontend developer.</p>
<p class="social-media">
<a href="mailto:tamita.rivera@gmail.com" aria-label="Email me">
<i class="fa fa-envelope fa-2x" aria-hidden="true"></i>
</a>
<a href="https://www.facebook.com/tamara.rivera.714" aria-label="Find me on Facebook">
<i class="fa fa-facebook-official fa-2x" aria-hidden="true"></i>
</a>
<a href="https://twitter.com/tamarariveraf" aria-label="Follow me on Twitter">
<i class="fa fa-twitter fa-2x" aria-hidden="true"></i>
</a>
<a href="https://github.com/tamararivera" aria-label="Check out my code on GitHub">
<i class="fa fa-github fa-2x" aria-hidden="true"></i>
</a>
</p>
<img id="index-image" src="http://s.gravatar.com/avatar/a2fbe30c4d672011afd9239ea1202a6e?s=200" alt="A picture of myself">
</article>
</main>
<footer>
<p><i class="fa fa-copyright" aria-hidden="true"></i> 2016 Tamara Rivera</p>
</footer>
</body>
</html>