-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·341 lines (327 loc) · 13 KB
/
index.html
File metadata and controls
executable file
·341 lines (327 loc) · 13 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
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
<!DOCTYPE html>
<html lang="en" class="sr">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" type="image/png" href="assets/favicon.png" />
<!-- Site title -->
<title>Ryan Reid | Developer</title>
<meta name="developer" content="[ryan], [ryan reid], [web developer]" />
<meta name="[web developer], javascript, react, json, html, css" content="Ryan Reid | Developer" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="styles.scss" />
<script
defer
src="https://unpkg.com/scrollreveal@4.0.0/dist/scrollreveal.min.js"
></script>
<!-- Todo: remove the below script once you finish your portfolio -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
</head>
<body>
<div id="top"></div>
<!-- **** Hero Section **** -->
<section id="hero" class="jumbotron">
<div class="container">
<h1 class="hero-title load-hidden">
Hi, my name is <span class="text-color-main">Ryan Reid.</span>
<br />
I'm a Developer.
</h1>
<p class="hero-cta load-hidden">
<a rel="noreferrer" class="cta-btn cta-btn--hero" href="#about"
>Learn More</a
>
</p>
</div>
</section>
<!-- /END Hero Section -->
<!-- **** About Section **** -->
<section id="about">
<div class="container">
<h2 class="section-title load-hidden">About me</h2>
<div class="row about-wrapper">
<div class="col-md-6 col-sm-12">
<div class="about-wrapper__image load-hidden">
<img
alt="Profile Image"
class="img-fluid rounded shadow-lg"
height="auto"
width="300px"
src="assets/profile.jpg"
alt="Profile Image"
/>
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="about-wrapper__info load-hidden">
<p class="about-wrapper__info-text">
I love working backwards from a problem, and retracing steps to find a solution. I enjoy discovering new ways to solve challenges. Becoming a developer has given me the ability to create while doing what I love.
</p>
<p class="about-wrapper__info-text">
In my personal time, I like to play guitar and build electronics. I'm currently building a vintage-style, tube-driven guitar amplifier. I also read and collect books on Stoic philosophy.
</p>
<span class="d-flex mt-3">
<a
rel="noreferrer"
target="_blank"
class="cta-btn cta-btn--resume"
href="assets/resume.pdf"
>
View Resume
</a>
</span>
</div>
</div>
</div>
</div>
</section>
<!-- /END About Section -->
<!-- **** Projects Section **** -->
<section id="projects">
<div class="container">
<div class="project-wrapper">
<h2 class="section-title dark-blue-text">Projects</h2>
<div class="row">
<div class="col-lg-4 col-sm-12">
<div class="project-wrapper__text load-hidden">
<h3 class="project-wrapper__text-title">Kanban Board</h3>
<div>
<p class="mb-4">
I wanted to make a tool that I could use to keep track of my progress on tasks. I've used Trello boards before, and I decided to make one. In order to do this, I would need to have drag-and-drop functionality. I started by learning how to make a HTML element draggable. Using a drag-and-drop API, I was able to drag and drop these editable HTML elements into other elements. The entries are customizable, and are stored in local memory. Since a kanban board is better to use on a bigger screen, such as a desktop or laptop, it has not been optimized for mobile use.
</p>
</div>
<a
rel="noreferrer"
target="_blank"
class="cta-btn cta-btn--hero"
href="https://rennblack.github.io/kanban-board/"
>
See Live
</a>
<a
rel="noreferrer"
target="_blank"
class="cta-btn text-color-main"
href="https://github.com/rennblack/kanban-board"
>
Source Code
</a>
</div>
</div>
<div class="col-lg-8 col-sm-12">
<div class="project-wrapper__image load-hidden">
<a rel="noreferrer" href="https://rennblack.github.io/kanban-board/" target="_blank">
<div
data-tilt
data-tilt-max="4"
data-tilt-glare="true"
data-tilt-max-glare="0.5"
class="thumbnail rounded js-tilt"
>
<img
alt="Project Image"
class="img-fluid"
src="assets/kanban-logo.png"
/>
</div>
</a>
</div>
</div>
</div>
<!-- /END Project -->
<div class="row">
<div class="col-lg-4 col-sm-12">
<div class="project-wrapper__text load-hidden">
<h3 class="project-wrapper__text-title">Form Validation</h3>
<div>
<p class="mb-4">
I wanted to make a form application, which is common for e-commerce websites. This form is an application that uses front end validation to that can be used to build a client database, send validation emails, and/or create a customer's online account by taking the user's input, and making it an object.
</p>
</div>
<a
rel="noreferrer"
target="_blank"
class="cta-btn cta-btn--hero"
href="https://rennblack.github.io/form-validation/"
>
See Live
</a>
<a
rel="noreferrer"
target="_blank"
class="cta-btn text-color-main"
href="https://github.com/rennblack/form-validation"
>
Source Code
</a>
</div>
</div>
<div class="col-lg-8 col-sm-12">
<div class="project-wrapper__image load-hidden">
<a rel="noreferrer" href="https://rennblack.github.io/form-validation/" target="_blank">
<div
data-tilt
data-tilt-max="4"
data-tilt-glare="true"
data-tilt-max-glare="0.5"
class="thumbnail rounded js-tilt"
>
<img
alt="Project Image"
class="img-fluid"
src="assets/form-logo.png"
/>
</div>
</a>
</div>
</div>
</div>
<!-- /END Project -->
<div class="row">
<div class="col-lg-4 col-sm-12">
<div class="project-wrapper__text load-hidden">
<h3 class="project-wrapper__text-title">Inspiring Quote Generator</h3>
<div>
<p class="mb-4">
For this project, I wanted to learn more about APIs. The idea was to grab random quotes for display, and then be able to tweet that quote with the click of a button. In order to do that, I learned how to make an asynchronous fetch request to a REST API. Unfortunately, this resulted in a CORS error, but I was able to solve that by using a proxy server.
</p>
</div>
<a
rel="noreferrer"
target="_blank"
class="cta-btn cta-btn--hero"
href="https://rennblack.github.io/quote-generator/"
>
See Live
</a>
<a
rel="noreferrer"
target="_blank"
class="cta-btn text-color-main"
href="https://github.com/rennblack/quote-generator"
>
Source Code
</a>
</div>
</div>
<div class="col-lg-8 col-sm-12">
<div class="project-wrapper__image load-hidden">
<a rel="noreferrer" href="https://rennblack.github.io/quote-generator/" target="_blank">
<div
data-tilt
data-tilt-max="4"
data-tilt-glare="true"
data-tilt-max-glare="0.5"
class="thumbnail rounded js-tilt"
>
<img
alt="Project Image"
class="img-fluid"
src="assets/quote-logo.png"
/>
</div>
</a>
</div>
</div>
</div>
<!-- /END Project -->
<div class="row">
<div class="col-lg-4 col-sm-12">
<div class="project-wrapper__text load-hidden">
<h3 class="project-wrapper__text-title">Robot Comedian</h3>
<div>
<p class="mb-4">
This project was a fun way to gain some more familiarity with APIs, particularly a text-to-speech API. The gif robot gets its jokes from a random joke API, and a text-to-speech API allows the robot to read them aloud. Its robot dad would be proud.
</p>
</div>
<a
rel="noreferrer"
target="_blank"
class="cta-btn cta-btn--hero"
href="https://rennblack.github.io/robot-comedian/"
>
See Live
</a>
<a
rel="noreferrer"
target="_blank"
class="cta-btn text-color-main"
href="https://github.com/rennblack/robot-comedian"
>
Source Code
</a>
</div>
</div>
<div class="col-lg-8 col-sm-12">
<div class="project-wrapper__image load-hidden">
<a rel="noreferrer" href="https://rennblack.github.io/robot-comedian/" target="_blank">
<div
data-tilt
data-tilt-max="4"
data-tilt-glare="true"
data-tilt-max-glare="0.5"
class="thumbnail rounded js-tilt"
>
<img
alt="Project Image"
class="img-fluid"
src="assets/robot-logo.png"
/>
</div>
</a>
</div>
</div>
</div>
<!-- /END Project -->
</div>
</div>
</section>
<!-- /END Projects Section -->
<!-- **** Contact Section **** -->
<section id="contact">
<div class="container">
<h2 class="section-title">Contact</h2>
<div class="contact-wrapper load-hidden">
<p class="contact-wrapper__text">Reach Out Today</p>
<a
rel="noreferrer"
target="_blank"
class="cta-btn cta-btn--resume"
href="mailto:ryan@ryanreid.dev"
>Email</a
>
</div>
</div>
</section>
<!-- /END Contact Section -->
<!-- **** Footer Section **** -->
<footer class="footer navbar-static-bottom">
<div class="container">
<a rel="noreferrer" href="#top" class="back-to-top">
<i class="fa fa-angle-up fa-2x" aria-hidden="true"></i>
</a>
<div class="social-links">
<a rel="noreferrer" href="https://www.linkedin.com/in/ryan-reid449" target="_blank">
<i class="fa fa-linkedin fa-inverse"></i>
</a>
<a rel="noreferrer" href="https://github.com/rennblack" target="_blank">
<i class="fa fa-github fa-inverse"></i>
</a>
</div>
<hr />
<p class="footer__text">
© 2022 - Portfolio developed by
<a rel="noreferrer" href="https://github.com/rennblack" target="_blank"
>Ryan Reid</a
>
</p>
</div>
</footer>
<!-- /END Footer Section -->
<script defer type="module" src="index.js"></script>
</body>
</html>