-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (88 loc) · 4.93 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!doctype html>
<html lang="en">
<head>
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700&family=Lora:wght@400;700&display=swap' rel='stylesheet' type='text/css'>
<meta charset="utf-8">
<title>Luvia Molina | The Journey</title>
<!--Linked CSS-->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!--HEADER section-->
<header>
<div class="full-width">
<div class="half-width">
<h1>Luvia Molina</h1>
</div>
<div class="half-width">
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#work">Work</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
<h2><span>Hi,</span> I'm a coach and beginner developer and this is my story.</h2>
</div>
</header>
<main>
<!--ABOUT section-->
<section id="about">
<div class="full-width">
<h2>A little bit about me.</h2>
<div class="half-width">
<p>I come from Dominican Republic, where I was born and raised. My journey into tech started at a young age, always surrounded by computers and whatnot. But when it came time to "choose" a career, I decided to complete a Degree in I/O Psychology. Ten years later, and I'm following two passions: Coaching and Coding.</p>
</div>
<div class="half-width">
<p>I'm still finding my way in this journey. I am a firm believer that we must make space for our curiosities. In the search, we often find our true selves. So I invite you to go on this journey with me.</p>
</div>
</div>
</section>
<!--WORK section-->
<section id="work">
<div class="full-width">
<div class="third-width">
<img src="img/icon-html.png" alt="HTML icon" />
<h3>Hand-Coded HTML</h3>
<p>My focus is writing clean, well-formatted, semantic HTML5
by hand to make sure that the content is easy to read, easy to collaborate, trouble-shoot and accessible.</p>
</div>
<div class="third-width">
<img src="img/icon-css.png" alt="CSS icon" />
<h3>Well-Organized CSS</h3>
<p>I pride myself on writing CSS that is easy to read and build on. I focus on keeping my CSS lean and fast to load,
and I make it a habit to stay up to date on current best practices.</p>
</div>
<div class="third-width">
<img src="img/icon-pencil.png" alt="Pencil icon" />
<h3>Ease Converting Designs into Code</h3>
<p>You can trust me to take a designer's PSD and quickly & accurately convert it into a webpage that is pixel-perfect match.</p>
</div>
</div>
</section>
<!--CONTACT footer-->
<footer id="contact">
<div class="full-width">
<div class="half-width">
<img src="img/contact.png" alt="Contact" id="contact-img" />
</div>
<div class="half-width">
<h2>Like what you see?</h2>
<h3 id="email-header">Let's meet for a cup of coffee.</h3>
<a href="mailto:thehrcoder@gmail.com"><img src="img/icon-envelope.png" alt="Email" id="envelope" />hi [@] luvimoli.com</a>
<h3 id="socialmedia-header">Or, find me on the interwebs</h3>
<ul>
<li><a href="https://twitter.com/luvimoli" target="_blank"><img src="img/icon-twitter.png" alt="Twitter" /></a></li>
<li><a href="https://www.tumblr.com/" target="_blank"><img src="img/icon-tumblr.png" alt="Tumblr" /></a></li>
<li><a href="https://www.linkedin.com/in/luviamolina/" target="_blank"><img src="img/icon-linkedin.png" alt="LinkedIn" /></a></li>
<li><a href="https://www.instagram.com/meneandoelpincel" target="_blank"><img src="img/icon-instagram.png" alt="Instagram" /></a></li>
<li><a href="https://github.com/theHRcoder" target="_blank"><img src="img/icon-github.png" alt="GitHub" /></a></li>
</ul>
</div>
</div>
</footer>
</main>
</body>
</html>