-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (54 loc) · 2.37 KB
/
index.html
File metadata and controls
60 lines (54 loc) · 2.37 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>About Me</title>
<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">Reinaldo Llano</a>
<nav>
<a href="index.html">About Me</a>
<a href="portfolio.html">Portolio</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\RL Personal Photo.jpg" class="auth-image" alt="Reinaldo Profile Pic">
<p> A tenacious bi-lingual coder who is passionate about making an impact in the community and considered a high performer.
More than twenty years of corporate experience working in the media and entertainment industry, including ten years
as a team leader. Knowledgeable and skilled at creating, managing, measuring, and marketing high-impact philanthropic
programs. Developed and executed initiatives targeting Education, Afterschool, and S.T.E.M., including marketing
and communications; program design and management; employee engagement; social media audience development and engagement;
training and development; and finance and operation. </p>
<p> Seeking junior web development opportunities to showcase my web development and stack coding skills for an organization
that is both customer-focused and socially responsible. Willing to relocate anywhere in the world.</p>
</section>
<section class="sidebar">
<div id="connect">
<h2>Connect with Me</h2>
<a href="https://github.com/llanoreinaldo">
<img src="assets/images/github.png" class="social media" alt="Github">
</a>
<a href="https://www.linkedin.com/in/llanoreinaldo/">
<img src="assets/images/linkedin.png" class="social media" alt="Linked In">
</a>
<a href="https://stackoverflow.com/story/basic-portfolio">
<img src="assets/images/stack overflow.png" class="social media" alt="Stack Overflow">
</a>
</div>
</section>
</div>
</body>
<footer>
<div class="container">
© Copywright 2018 Reinaldo Llano, Jr.
</div>
</footer>
</html>