-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
200 lines (200 loc) · 5.5 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>James Labyer Portfolio</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta
name="theme-color"
content="#fa573e"
/>
<script
defer
src="./fontawesome/solid.js"
></script>
<script
defer
src="./fontawesome/brands.js"
></script>
<script
defer
src="./fontawesome/fontawesome.js"
></script>
<link
rel="preconnect"
href="https://fonts.googleapis.com"
/>
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin
/>
<link
href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="./styles.css"
/>
<link
rel="icon"
href="./img/laptop-code-solid.svg"
type="image/svg+xml"
/>
</head>
<body class="space-grotesk-default">
<header>
<h1><i class="fa-solid fa-laptop-code"></i> James Labyer</h1>
<nav id="navbar">
<a
href="#welcome-section"
class="welcome-link"
>About</a
>
<a
href="#projects"
class="projects-link"
>Projects</a
>
<a
href="#contact"
class="contact-link"
>Contact</a
>
</nav>
</header>
<main>
<section id="name-section">
<h1>James Labyer</h1>
<h2 class="space-grotesk-default">Full-stack web developer</h2>
</section>
<section id="projects">
<h1>Projects</h1>
<div class="projects">
<div class="project-tile">
<img
src="./"
loading="lazy"
/>
<div class="project-title">
<h3>Cargo Service</h3>
<p>Node.js, RESTful API, Auth0, Google Cloud</p>
<div class="project-links">
<div><a href="https://github.com/james-labyer/cargo-management-service">Code</a></div>
<div class="demo-link"><a href="https://cargo-management-service.uc.r.appspot.com/">Demo</a></div>
</div>
</div>
</div>
<!-- <div class="project-tile">
<img
src="./"
loading="lazy"
/>
<div class="project-title">
<h3>Password Manager</h3>
<p>Flask, PostgreSQL, React, Web Crypto API</p>
<div class="project-links">
<div><a href="#">Code</a></div>
<div class="demo-link"><a href="#">Demo</a></div>
</div>
</div>
</div>-->
<div class="project-tile">
<img
src="./img/product-page.PNG"
loading="lazy"
/>
<div class="project-title">
<h3>Product Landing Page</h3>
<p>HTML, CSS</p>
<div class="project-links">
<div>
<a
href="https://github.com/james-labyer/jlabyer-portfolio/tree/main/product-landing-page"
>Code</a
>
</div>
<div class="demo-link">
<a href="./product-landing-page/landing.html">Demo</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="welcome-section">
<h1>About Me</h1>
<p>
I discovered a love of building things while working as a technical
trainer and enterprise software product manager, so I returned to
school and earned a B.S. in Computer Science in March 2024. I am
seeking work as a frontend, backend, or full-stack web developer or
software engineer.
</p>
<p>
Due to my professional and educational background, I have experience
in the following areas:
</p>
<table>
<thead>
<th>Skill</th>
<th>Years of Experience</th>
</thead>
<tbody>
<tr>
<td>Agile Methodologies</td>
<td>5</td>
</tr>
<tr>
<td>Technical Writing</td>
<td>3</td>
</tr>
<tr>
<td>Enterprise Customer Relationships</td>
<td>8</td>
</tr>
<tr>
<td>Troubleshooting</td>
<td>4</td>
</tr>
<tr>
<td>Python Programming</td>
<td>2</td>
</tr>
<tr>
<td>JavaScript Programming</td>
<td>2</td>
</tr>
<tr>
<td>Databases</td>
<td>4</td>
</tr>
</tbody>
</table>
</section>
<section id="contact">
<h1>Let's work together!</h1>
<div class="contact-links">
<a
id="profile-link"
href="https://github.com/james-labyer"
target="_blank"
><i class="fa-brands fa-github"></i></i> GitHub</a
>
<a
id="li-link"
href="https://www.linkedin.com/in/jlabyer/"
><i class="fa-brands fa-linkedin"></i></i> LinkedIn</a
>
</div>
</section>
</main>
<footer>
<div class="copyright"><p>© James Labyer</p></div>
</footer>
</body>
</html>