-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (49 loc) · 2.29 KB
/
index.html
File metadata and controls
62 lines (49 loc) · 2.29 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
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sandra Hernández's Portfolio</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header>
<div>
<div class="name">
<h1>Sandra Hernández</h1>
</div>
<nav>
<a href="index.html">About</a> |
<a href="portfolio.html">Portfolio</a> |
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<main>
<h2 class="section-name">About me</h2>
<figure>
<img class="bio-img" src="assets/images/about-me-thumb.jpg" alt="Sandra Hernández" width="200" height="150"/>
</figure>
<div class="bio">
<p>
I am currently going through a Full Stack Coding Bootcamp organized by Tec de Monterrey and Trilogy
that I'll complete by march 2020.
</p>
<p>
I have 12 years of experience working in the digital version of national news websites as Reforma
and El Financiero and currently I am the Audience Editor of EL CEO, where besides being an editor of real-time news,
I am in charge of analyzing the performance of contents both in the site and in social media, as well as SEO.
</p>
<p>
I also was the manager of the redesign of the El Financiero website, linking the work of the teams in charge
of design and front and back end developers with the necessities of the editorial and commercial teams, as well as
SEO rules.
</p>
</div>
</main>
<footer>
<div class="footer">
<small>Copyright © </small>
</div>
</footer>
</body>
</html>