-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
472 lines (345 loc) · 16 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
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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stacey's Portfolio</title>
<script src="https://kit.fontawesome.com/d12ebbc178.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Nav Bar -->
<nav class="navbar">
<ul class="link-group">
<li class="link active"><a href="#">home</a></li>
<li class="link"><a href="#">projects</a></li>
<li class="link"><a href="#">about</a></li>
<li class="link"><a href="#">contact</a></li>
</ul>
</nav>
<!-- home section -->
<section class="home-section active">
<h1 class="hero-heading">hello, <br>i'm <br>stacey.</h1>
<img src="img/resized.gif" class="home-img" alt="home">
</section>
<!-- project section -->
<section class="project-section">
<h1 class="project-heading">Featured projects</h1>
<div class="project-container">
<!-- kind of like this positioning -->
<!-- <div class="project-content">
<h1 class="project-title">project 01</h1>
<p class="project-info">
Play a cuter version of the classic, retro mobile phone game in your web browser using your keyboard!
</p>
</div> -->
<!-- Project 1 -->
<div class="project-card">
<img src="img/snake.png" class="project-img" alt="project-1">
<div class="project-content">
<!-- <h1 class="project-title">Rainbow Snake</h1> -->
<p class="project-info">
Play a cute version of the classic, retro mobile phone game in your browser using your keyboard!
</p>
<div class="project-btn-grp">
<a href="https://github.com/staceyjo/snake">
<button class="project-btn-1">github repo</button>
</a>
<a href="https://staceyjo.github.io/snake/">
<button class="project-btn-1">live demo</button>
</a>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="project-card">
<img src="img/jeopardy.png" class="project-img" alt="project-2">
<div class="project-content">
<!-- <h1 class="project-title">Jeopardy Trivia</h1> -->
<p class="project-info">
Test your trivia skills with 221,510 questions provided by Jeopardy via the jService api!
</p>
<div class="project-btn-grp">
<a href="https://github.com/staceyjo/jeopardy-trivia-jservice-api-react-app">
<button class="project-btn-1">github repo</button>
</a>
<a href="https://statuesque-syrniki-01c1fd.netlify.app/">
<button class="project-btn-1">live demo</button>
</a>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="project-card">
<img src="img/places2.png" class="project-img" alt="project-3">
<div class="project-content">
<!-- <h1 class="project-title">Places</h1> -->
<p class="project-info">
Full stack MERN application that allows users to share their special places (images & location)
with other users.
</p>
<div class="project-btn-grp">
<a href="https://github.com/staceyjo/places-app">
<button class="project-btn">github frontend repo</button>
</a>
<a href="https://github.com/staceyjo/places-app-final">
<button class="project-btn">github backend repo</button>
</a>
<a
href="https://www.canva.com/design/DAFYDvQ6dFM/rPF8Snf_NN5o7URp1fZZdQ/watch?utm_content=DAFYDvQ6dFM&utm_campaign=designshare&utm_medium=link&utm_source=publishsharelink">
<button class="project-btn">view demo</button>
</a>
</div>
</div>
</div>
<!-- Project 4 -->
<div class="project-card">
<img src="img/employee2.png" class="project-img-1" alt="project-4">
<div class="project-content">
<!-- <h1 class="project-title">Employee Directory</h1> -->
<p class="project-info">
A fun and simple employee directory using React. Click on an employee to view more details!
</p>
<div class="project-btn-grp">
<a href="https://github.com/staceyjo/State-Props-and-React-Router">
<button class="project-btn">github repo</button>
</a>
<a
href="https://www.canva.com/design/DAFYEbod1x4/-Uq9ytJbjtFn9cTkl5rxOw/watch?utm_content=DAFYEbod1x4&utm_campaign=designshare&utm_medium=link&utm_source=publishsharelink">
<button class="project-btn">view demo</button>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- about section -->
<section class="about-section">
<div class="about">
<div class="about-img-container">
<img src="img/face.gif" class="about-img" alt="about img">
<form action="https://www.canva.com/design/DAFX-G4_cVs/view" method="get" target="_blank">
<button class="download-cv-btn"></a>view resume</button>
</form>
</div>
<div class="about-info">
<p class="about-info">Hello, I'm Stacey. <br> <br>My first interest in programming was actually Myspace
. Although most of the "code" was copy and paste, I quickly learned that in order to get things to
run the formatting had to be just right.<br><br>As someone who enjoys challenges, I'm pursuing
opportunities as a software developer because I love troubleshooting and finding solutions. I love
the immediate sense of gratification I receive when I finally get something to work. <br><br>No matter
how small the lesson or project, I get to test my attention to detail and continually gain
confidence when I break problems down. Progress feels so rewarding when you push yourself
out of your comfort zone to learn something new!<br></p>
<!-- <p style="color:#4fa0ff;">👇🏽 Keep scrolling to learn more about the skills I'm developing and follow my journey
into web development as I create more projects along the way.</p> -->
</div>
</div>
<!-- skills section -->
<div class="skills-section">
<h1 class="project-heading">skills</h1>
<div class="skills-container">
<!-- HTML -->
<div class="skill-card">
<img src="img/html.png" class="skill-img" alt="html img">
<!-- advised not to include -->
<!-- <div class="skill-level">98%</div> -->
<h1 class="skill-name">HTML</h1>
<p class="skill-info">HTML 5.3</p>
</div>
<!-- CSS -->
<div class="skill-card">
<img src="img/css.png" class="skill-img" alt="css img">
<h1 class="skill-name">CSS</h1>
<p class="skill-info">CSS 2.1 and CSS3</p>
</div>
<!-- JS -->
<div class="skill-card">
<img src="img/js.png" class="skill-img" alt="js img">
<h1 class="skill-name">JavaScript</h1>
<p class="skill-info">ES6</p>
</div>
<!-- Node -->
<div class="skill-card">
<img src="img/nodejs.png" class="skill-img" alt="Node.js img">
<h1 class="skill-name">Node.js</h1>
<p class="skill-info">version 19.4.0</p>
</div>
<!-- React -->
<div class="skill-card">
<img src="img/reactjs.png" class="skill-img" alt="React.js img">
<h1 class="skill-name">React.js</h1>
<p class="skill-info">version 18</p>
</div>
</div>
</div>
<!-- timeline -->
<div class="timeline">
<h1 class="project-heading">web dev journey</h1>
<!-- card 1 -->
<div class="card">
<div class="card-body">
<h1 class="card-title">Sep. 2022- Jan. 2023</h1>
<p class="card-detail">Per Scholas, Full-time Immersive Software Engineering Student</p>
</div>
</div>
<!-- card 2 -->
<div class="card">
<div class="card-body">
<h1 class="card-title">Dec. 2022 - Jan. 2023</h1>
<p class="card-detail">Places MERN app</p>
</div>
</div>
<!-- card 3 -->
<div class="card">
<div class="card-body">
<h1 class="card-title">December 2022</h1>
<p class="card-detail">iStocks React SPA</p>
</div>
</div>
<!-- card 4 -->
<div class="card">
<div class="card-body">
<h1 class="card-title">December 2022</h1>
<p class="card-detail">React Fashion blog</p>
</div>
</div>
<!-- card 5 -->
<div class="card">
<div class="card-body">
<h1 class="card-title">December 2022</h1>
<p class="card-detail">React Jeopardy Trivia game</p>
</div>
</div>
<!-- card 6 -->
<div class="card">
<div class="card-body">
<h1 class="card-title">December 2022</h1>
<p class="card-detail">React Employee Directory</p>
</div>
</div>
<!-- card 7 -->
<div class="card">
<div class="card-body">
<h1 class="card-title">December 2022</h1>
<p class="card-detail">React Dashboard</p>
</div>
</div>
<!-- card 8 -->
<div class="card">
<div class="card-body">
<h1 class="card-title">December 2022</h1>
<p class="card-detail">React Tic-Tac-Toe</p>
</div>
</div>
<!-- card 9 -->
<div class="card">
<div class="card-body">
<h1 class="card-title">November 2022</h1>
<p class="card-detail">Rainbow Snake game</p>
</div>
</div>
<!-- card 10 -->
<div class="card">
<div class="card-body">
<h1 class="card-title">April 2022</h1>
<p class="card-detail">Weather app</p>
</div>
</div>
<!-- card 11 -->
<div class="card">
<div class="card-body">
<h1 class="card-title">March 2022</h1>
<p class="card-detail">Basketball Bytes api</p>
</div>
</div>
<!-- card 12 -->
<!-- <div class="card">
<div class="card-body">
<h1 class="card-title">2010 - 2018</h1>
<p class="card-detail">Senior Marketing Project Manager</p>
</div>
</div> -->
<!-- card 13 -->
<!-- <div class="card">
<div class="card-body">
<h1 class="card-title">2006 - 2010</h1>
<p class="card-detail">University of Georgia, Bachelor's of Arts in Journalism & Mass Communication,
Advertising</p>
</div>
</div> -->
</section>
<!-- contact section -->
<section class="contact-section">
<form class="contact-form" name="submit-to-google-sheet">
<input type="text" name="Name" id="name" autocomplete="off" placeholder=" your name" required>
<input type="text" name="Email" id="email" autocomplete="off" placeholder=" your email address" required>
<textarea name="Message" id="msg" autocomplete="off" placeholder=" Send me a message..."
required></textarea>
<button type="submit" class="form-submit-btn">Submit</button>
</form>
<!-- Google Map Embed -->
<div class="mapouter">
<div class="gmap_canvas">
<iframe width="400" height="500" id="gmap_canvas"
src="https://maps.google.com/maps?q=Atlanta,%20Ga&t=&z=13&ie=UTF8&iwloc=&output=embed"
frameborder="0" scrolling="no" marginheight="0" marginwidth="0">
</iframe>
<a href="https://123movies-a.com"></a>
<br>
<style>
.mapouter {
position: relative;
text-align: right;
height: 500px;
width: 400px;
}
</style>
<a href="https://www.embedgooglemap.net">embed map on website</a>
<style>
.gmap_canvas {
overflow: hidden;
background: none !important;
height: 500px;
width: 400px;
}
</style>
</div>
</div>
<!-- display after message is submitted -->
<span id="submitmsg"></span>
</section>
<!-- footer -->
<footer class="footer">
<div class="social-icons">
<a href="https://www.linkedin.com/in/staceyljo/"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/staceyjo"><i class="fab fa-github"></i></a>
</div>
</footer>
<!-- Google sheets script -->
<!-- https://github.com/jamiewilson/form-to-google-sheets -->
<script>
const scriptURL = 'https://script.google.com/macros/s/AKfycby8sMeANPWRYBCTyqcn34Ti8D1gMYR5eWMuxxXknZrDaEFRJ_MIBL39EJA6-EwjQYhY/exec'
const form = document.forms['submit-to-google-sheet']
// to only allow submit message to appear when button is pressed
const submitmsg = document.getElementById("submitmsg")
form.addEventListener('submit', e => {
e.preventDefault()
fetch(scriptURL, { method: 'POST', body: new FormData(form) })
.then(response => {
submitmsg.innerHTML = "Message sent successfully!"
setTimeout(function () {
submitmsg.innerHTML = ""
}, 5000)
form.reset()
})
.catch(error => console.error('Error!', error.message))
})
</script>
<script src="app.js"></script>
</body>
</html>