-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
153 lines (140 loc) · 5.92 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE HTML>
<html>
<head>
<!--Stylsheets-->
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" type="text/css" href="/css/buttons.css">
<link rel="stylesheet" type="text/css" href="/css/mediaqueries.css">
<!--Fonts-->
<link rel="stylesheet" media="screen" href="https://fontlibrary.org/face/now" type="text/css" />
<!-- Favicon -->
<link rel="shortcut icon" href="/imgs/favicon.ico">
<!-- Load jQuery Libraries -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.0/jquery-ui.min.js"></script>
<!-- Load ScrollTo -->
<script type="text/javascript" src="/js/jquery.scrollTo.min.js"></script>
<!-- Load LocalScroll -->
<script type="text/javascript" src="/js/jquery.localScroll.min.js"></script>
<!-- javascript that will initiate jQuery and the LocalScroll plugin -->
<script type="text/javascript" src="/js/scrolling.js"></script>
<script type="text/javascript" src="/js/hamburgermenu.js"></script>
</head>
<body id="page-top">
<div class="wrapper">
<nav id="navbar" class="navbar">
<a class="brand-name titles" href="#page-top">Heather Lorenzo</a>
<ul class="in-use">
<!-- <li>
<a class="nav-link titles" href="#projects">Projects</a>
<div class="highlight-bar"></div>
</li> -->
<li>
<a class="nav-link titles" href="#about">About</a>
<div class="highlight-bar"></div>
</li>
<li>
<a class="nav-link titles" href="#contact">Contact</a>
<div class="highlight-bar"></div>
</li>
</ul>
<a class="navbar-toggle" href="#">
<p>☰</p>
</a>
</nav>
<div class="content">
<header>
<img class="img-responsive" src="/imgs/heatherillustration-01.png" alt="">
<div class="intro-text">
<span class="name titles">Heather Lorenzo</span>
<span class="skills">Senior Software Engineer</span>
</div>
</header>
<div class="main-content">
<section id="projects" class="projects">
<div class="grid-container">
<div class="row">
<h2 class="column-8 gray-title titles">Projects</h2>
</div>
<div class="row">
<div class="column-8">
<div class="divider"></div>
</div>
</div>
<div class="row bottom-row">
<p class="coming-soon">Update Coming Soon.</p>
</div>
</section>
<section id="about" class="about">
<div class="grid-container">
<div class="row bottom-row">
<div class="column-3">
<img class="profile-pic" src="/imgs/Hprofilepic.jpg">
<a href="/download/HeatherLorenzo_Resume.pdf" download="HeatherLorenzo_Resume.pdf" id="resume-btn"
class="button button-resume"><img src="/imgs/file-pdf-white.png"> | Download Résumé
</a>
</div>
<div class="column-5">
<h2 class="titles about-title">About</h2>
<p class="about-text">
I’ve always been an artsy person with a passion for technology. So as a software
engineer, good design is very important to me. I love making web applications with the user always in
mind. For me, UX is like storytelling, beginning with easy to use functionality, enhancing that
experience through its visual design, then growing into an app with use and purpose. On a personal note,
I love cooking and baking especially when the two come together such as trying new recipes for different
kinds of empanadas or making my favorite chicken pot pie recipe. I've also recently been able to keep plants
alive, so adopting various plants and learning how to grow and care for them has been my latest side hobby.
</p>
</div>
</div>
</div>
</section>
<section id="contact" class="contact">
<div class="grid-container">
<div class="row">
<h2 class="column-8 gray-title titles">Contact</h2>
</div>
<div class="row">
<div class="column-8">
<div class="divider"></div>
</div>
</div>
<div class="row bottom-row">
<div class="column-3">
<h3 class='titles'>Email</h3>
<br>
<a class="button" href="mailto:[email protected]">Write Me</a>
</div>
<div class="column-3">
<h3 class="titles">Social Media</h3>
<a href="https://github.com/jeder28"><img class="soc-media-icons" src="/imgs/github.png"></a>
<a href="https://www.linkedin.com/in/heatherdrainlorenzo"><img class="soc-media-icons" src="/imgs/linkedin.png"></a>
</div>
<div class="column-3">
<h3 class='titles'>Location</h3>
<p>Austin, TX</p>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
<div class="push"></div>
</div>
<footer>
<p>Copyright © Heather Lorenzo 2025</p>
</footer>
</body>
<script type="text/javascript" src="/js/scrolltracking.js"></script>
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-71771248-1', 'auto');
ga('send', 'pageview');
</script>
</html>