-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
495 lines (495 loc) · 28.7 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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
<!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>Numbers00's Portfolio</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<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=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tiny-slider/2.9.4/tiny-slider.css">
<link href="style.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-dark navbar-expand-lg bg-dark sticky-top">
<div class="container">
<a class="navbar-brand" href="#">My Portfolio</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#aboutSection">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#groupProjectsSection">Group Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#soloProjectsSection">Solo Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contactSection">Contact</a>
</li>
</ul>
<div class="d-flex" role="search">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</div>
</div>
</div>
</nav>
<header>
<section id="carouselSection" class="w-100">
<div id="topCarousel" class="carousel carousel-dark slide" data-bs-ride="false">
<div class="carousel-indicators">
<button type="button" data-bs-target="#topCarousel" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#topCarousel" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#topCarousel" data-bs-slide-to="2" aria-label="Slide 3"></button>
<button type="button" data-bs-target="#topCarousel" data-bs-slide-to="3" aria-label="Slide 4"></button>
<button type="button" data-bs-target="#topCarousel" data-bs-slide-to="4" aria-label="Slide 5"></button>
<button type="button" data-bs-target="#topCarousel" data-bs-slide-to="5" aria-label="Slide 6"></button>
<button type="button" data-bs-target="#topCarousel" data-bs-slide-to="6" aria-label="Slide 7"></button>
<button type="button" data-bs-target="#topCarousel" data-bs-slide-to="7" aria-label="Slide 8"></button>
<button type="button" data-bs-target="#topCarousel" data-bs-slide-to="8" aria-label="Slide 9"></button>
<button type="button" data-bs-target="#topCarousel" data-bs-slide-to="9" aria-label="Slide 10"></button>
<button type="button" data-bs-target="#topCarousel" data-bs-slide-to="10" aria-label="Slide 11"></button>
<button type="button" data-bs-target="#topCarousel" data-bs-slide-to="11" aria-label="Slide 12"></button>
<button type="button" data-bs-target="#topCarousel" data-bs-slide-to="12" aria-label="Slide 13"></button>
<button type="button" data-bs-target="#topCarousel" data-bs-slide-to="13" aria-label="Slide 14"></button>
<button type="button" data-bs-target="#topCarousel" data-bs-slide-to="14" aria-label="Slide 15"></button>
<button type="button" data-bs-target="#topCarousel" data-bs-slide-to="15" aria-label="Slide 16"></button>
<button type="button" data-bs-target="#topCarousel" data-bs-slide-to="16" aria-label="Slide 17"></button>
<button type="button" data-bs-target="#topCarousel" data-bs-slide-to="17" aria-label="Slide 18"></button>
<button type="button" data-bs-target="#topCarousel" data-bs-slide-to="18" aria-label="Slide 19"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="assets/imgs/Portfolio v3 Compilation Gif.gif" class="d-block w-100" alt="Projects Compilation Gif">
<div class="carousel-caption d-none d-md-block">
<h5>Welcome to My Portfolio</h5>
<p>See some of my projects and contact information here</p>
</div>
</div>
<div class="carousel-item">
<img src="assets/imgs/UPM Social Compas Matchmaking Site.jpg" class="d-block w-100" alt="UPM Social Compas">
<div class="carousel-caption d-none d-md-block">
<h5>UPM - Social Compas</h5>
<p>A matchmaking and social friendship compatibility website I made with my groupmates for university project submission</p>
</div>
</div>
<div class="carousel-item">
<img src="assets/imgs/UPM Sellpoint CRMS.jpg" class="d-block w-100" alt="UPM Sellpoint CRMS">
<div class="carousel-caption d-none d-md-block">
<h5>UPM - Sellpoint</h5>
<p>A CRMS website I made with my groupmates for university project submission</p>
</div>
</div>
<div class="carousel-item">
<img src="assets/imgs/UPM Online Bookshop.jpg" class="d-block w-100" alt="UPM Code & Chill">
<div class="carousel-caption d-none d-md-block">
<h5>UPM - Code & Chill</h5>
<p>An online bookshop I made with my groupmates for university project submission</p>
</div>
</div>
<div class="carousel-item">
<img src="assets/imgs/UPM The Scholarly Repo.jpg" class="d-block w-100" alt="UPM The Scholarly Repo">
<div class="carousel-caption d-none d-md-block">
<h5>UPM - The Scholarly Repo</h5>
<p>A books repository website I made by myself for university project submission</p>
</div>
</div>
<div class="carousel-item">
<img src="assets/imgs/UPM Hanayori Slideshow.jpg" class="d-block w-100" alt="UPM Hanayori Slideshow">
<div class="carousel-caption d-none d-md-block">
<h5>UPM - Hanayori Slideshow</h5>
<p>A Hanayori wikia-style website I made by myself for university project submission</p>
</div>
</div>
<div class="carousel-item">
<img src="assets/imgs/UPM Synergy Listmaking App.jpg" class="d-block w-100" alt="UPM Synergy">
<div class="carousel-caption d-none d-md-block">
<h5>UPM - Synergy</h5>
<p>A Kanban-style list-makikng website I made with my groupmates for university project submission</p>
</div>
</div>
<div class="carousel-item">
<img src="assets/imgs/Numerical Analysis Calculator.jpg" class="d-block w-100" alt="Numerical Analysis Calculator">
<div class="carousel-caption d-none d-md-block">
<h5>Numerical Analysis Calculator</h5>
<p>An online numerical analysis calculator I made by myself as a personal project</p>
</div>
</div>
<div class="carousel-item">
<img src="assets/imgs/Odin RPS Game.jpg" class="d-block w-100" alt="Odin RPS Game">
<div class="carousel-caption d-none d-md-block">
<h5>Odin - RPS Game</h5>
<p>A rock-paper-scissors deathmatch website I made by myself for The Odin Project project submission</p>
</div>
</div>
<div class="carousel-item">
<img src="assets/imgs/Odin Etch-a-Sketch.jpg" class="d-block w-100" alt="Odin Etch-a-Sketch">
<div class="carousel-caption d-none d-md-block">
<h5>Odin - Etch-a-Sketch</h5>
<p>A pixelart sketching website I made by myself for The Odin Project project submission</p>
</div>
</div>
<div class="carousel-item">
<img src="assets/imgs/Odin Landing Page.jpg" class="d-block w-100" alt="Odin Landing Page">
<div class="carousel-caption d-none d-md-block">
<h5>Odin - Landing Page</h5>
<p>A landing page website I made by myself for The Odin Project project submission</p>
</div>
</div>
<div class="carousel-item">
<img src="assets/imgs/Odin Arithmetic Calculator.jpg" class="d-block w-100" alt="Odin Arithmetic Calculator">
<div class="carousel-caption d-none d-md-block">
<h5>Odin - Arithmetic Calculator</h5>
<p>An arithmetic calculator website with configurable history I made by myself for The Odin Project project submission</p>
</div>
</div>
<div class="carousel-item">
<img src="assets/imgs/Odin Signup Form.jpg" class="d-block w-100" alt="Odin Signup Form">
<div class="carousel-caption d-none d-md-block">
<h5>Odin - Signup Form</h5>
<p>A signup form website I made by myself for The Odin Project project submission</p>
</div>
</div>
<div class="carousel-item">
<img src="assets/imgs/FCC 25 + 5 Clock.jpg" class="d-block w-100" alt="FCC 25 + 5 Clock">
<div class="carousel-caption d-none d-md-block">
<h5>FCC - 25 + 5 Clock</h5>
<p>A configurable pomodoro timer website I made by myself for freeCodeCamp project submission</p>
</div>
</div>
<div class="carousel-item">
<img src="assets/imgs/FCC Markdown Previewer.jpg" class="d-block w-100" alt="FCC Markdown Previewer">
<div class="carousel-caption d-none d-md-block">
<h5>FCC - Markdown Previewer</h5>
<p>A markdown previewer website I made by myself for freeCodeCamp project submission</p>
</div>
</div>
<div class="carousel-item">
<img src="assets/imgs/FCC Javascript Calculator.jpg" class="d-block w-100" alt="FCC Javascript Calculator">
<div class="carousel-caption d-none d-md-block">
<h5>FCC - Javascript Calculator</h5>
<p>A javascript calculator website I made by myself for freeCodeCamp project submission</p>
</div>
</div>
<div class="carousel-item">
<img src="assets/imgs/FCC Random Quote Machine.jpg" class="d-block w-100" alt="FCC Random Quote Machine">
<div class="carousel-caption d-none d-md-block">
<h5>FCC - Random Quote Machine</h5>
<p>A random quote machine website I made by myself for freeCodeCamp project submission</p>
</div>
</div>
<div class="carousel-item">
<img src="assets/imgs/FCC God Arc Technical Documentation.jpg" class="d-block w-100" alt="FCC God Arc Technical Documentation">
<div class="carousel-caption d-none d-md-block">
<h5>FCC - God Arc Technical Documentation</h5>
<p>A god arc technical documentation website I made by myself for freeCodeCamp project submission</p>
</div>
</div>
<div class="carousel-item">
<img src="assets/imgs/FCC Drum Machine.jpg" class="d-block w-100" alt="FCC Drum Machine">
<div class="carousel-caption d-none d-md-block">
<h5>FCC - Drum Machine</h5>
<p>A drum machine website I made by myself for freeCodeCamp project submission</p>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#topCarousel" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#topCarousel" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</section>
</header>
<main>
<section id="aboutSection" class="bg-theme1 w-100">
<div class="about-contents d-flex flex-column">
<div class="about-top-div position-relative container">
<hr class="horizontal-divider topmost-horizontal-divider position-absolute top-0 start-0 w-100 ms-4">
<div class="section-label bg-theme3 position-absolute rounded-pill top-0 start-0 p-3">
<h2 class="fw-bold text-white mb-0 mx-4">About Me</h2>
</div>
<div class="about-top-contents w-100 d-flex justify-content-between py-4">
<div class="about-top-left-div d-flex flex-column justify-content-between mt-4 ms-4 pt-4">
<h2 class="fw-bold">KYLE MARI ANGELO M. AQUINO</h2>
<p class="fs-4">Full Stack Web Developer</p>
<p class="fs-5">
LinkedIn:
<a class="link-theme1" href="https://www.linkedin.com/in/kyle-aquino/" target="_blank">https://www.linkedin.com/in/kyle-aquino/</a>
</p>
<p class="fs-5">
Github:
<a class="link-theme1" href="https://github.com/Numbers00" target="_blank">https://github.com/Numbers00/</a>
</p>
<p class="fs-5">
CodePen:
<a class="link-theme1" href="https://codepen.io/your-work" target="_blank">https://codepen.io/Numbers_00/</a>
</p>
</div>
<div class="about-top-right-div d-flex flex-column justify-content-center mt-4 me-4 pt-4">
<img src="assets/imgs/self portrait.jpg" class="self-portrait rounded-circle" alt="Self Portrait">
</div>
</div>
</div>
<div class="about-middle-div bg-theme2 w-100">
<div class="about-middle-contents position-relative container d-flex justify-content-between">
<hr class="horizontal-divider position-absolute top-0 start-0 w-100 ms-4">
<hr class="horizontal-divider position-absolute bottom-0 start-0 w-100 ms-4">
<div class="about-mid-left-div col-7 d-flex flex-column ms-4 pt-4 pb-2">
<h2 class="fw-bold">About Me</h2>
<p class="fs-5">
A student with a passion for anything web-related, with a<br>
portfolio of well over 25 websites I either built or helped<br>
build. Experienced in both the fundamentals and in<br>
using various libraries and frameworks for the whole<br>
stack, but always driven to learn even more about web<br>
development.
</p>
</div>
<div class="about-mid-right-div position-relative col-4 d-flex flex-column justify-content-center align-items-start pt-4 pb-2 px-4">
<hr class="vertical-divider position-absolute bottom-0 start-0">
<h2 class="fw-bold">Soft Skills</h2>
<ul>
<li class="fs-5">Project Management Skills</li>
<li class="fs-5">Time Management Skills</li>
<li class="fs-5">Problem Solving Skills</li>
<li class="fs-5">Communication Skills</li>
<li class="fs-5">Action-Oriented</li>
<li class="fs-5">Will to Learn and Improve</li>
</ul>
</div>
</div>
</div>
<div class="about-bottom-div bg-theme1 w-100">
<div class="about-bottom-contents container d-flex justify-content-between">
<div class="about-bottom-left-div col-7 d-flex flex-column ms-4 py-4">
<h2 class="fw-bold">My Tech Stack</h2>
<ul>
<li class="fs-5">Bootstrap, React.js, Node.js/Express, MongoDB Atlas</li>
<li class="fs-5">Bootstrap, Vue.js, Django, PostgreSQL</li>
<li class="fs-5">Bootstrap, jQuery, Laravel, MySQL</li>
<li class="fs-5">Bootstrap, Node.js/Express, MongoDB Atlas</li>
</ul>
</div>
<div class="about-bottom-right-div col-5 d-flex flex-column justify-content-center">
<div class="tech-slider">
<div class="tech-container">
<img src="assets/logos/ReactJS.png" class="logo-img" alt="React.js">
</div>
<div class="tech-container">
<img src="assets/logos/VueJS.jpg" class="logo-img" alt="Vue.js">
</div>
<div class="tech-container">
<img src="assets/logos/Bootstrap5.jpeg" class="logo-img" alt="Bootstrap">
</div>
<div class="tech-container">
<img src="assets/logos/Laravel.png" class="logo-img" alt="Laravel">
</div>
<div class="tech-container">
<img src="assets/logos/jQuery.gif" class="logo-img" alt="jQuery">
</div>
<div class="tech-container">
<img src="assets/logos/NodeJS.png" class="logo-img" alt="Node.js">
</div>
<div class="tech-container">
<img src="assets/logos/Django.png" class="logo-img" alt="Django">
</div>
<div class="tech-container">
<img src="assets/logos/MongoDB.png" class="logo-img" alt="MongoDB">
</div>
<div class="tech-container">
<img src="assets/logos/PostgreSQL.png" class="logo-img" alt="PostgreSQL">
</div>
<div class="tech-container">
<img src="assets/logos/MySQL.png" class="logo-img" alt="MySQL">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="groupProjectsSection" class="bg-theme1 w-100">
<div class="group-projects-contents position-relative container d-flex flex-column py-4">
<hr class="horizontal-divider position-absolute top-0 start-0 w-100 ms-4">
<div class="section-label bg-theme3 position-absolute rounded-pill top-0 start-0 p-3">
<h2 class="fw-bold text-white mb-0 mx-4">Projects I Worked On</h2>
</div>
<div class="project-group1 d-flex flex-column mt-4 mb-3 pt-4">
<img src="assets/imgs/UPM Social Compas Matchmaking Site.jpg" class="project-img img-fluid mb-2" alt="UPM Social Compas">
<div class="project-info px-2">
<h2 class="fw-bold">UPM - Social Compas</h2>
<p class="fs-5">
A matchmaking and friendship compatibility website where you can see your compatibility
with others by matching your zodiac signs. Users on the website can befriend each other,
see friend requests, rate and comment on their compatibility results, and so on.
<br><br>
Tech Stack: PostgreSQL, Django, Bootstrap
</p>
</div>
</div>
<div class="project-group1 d-flex flex-column mt-4 mb-3 pt-4">
<img src="assets/imgs/UPM Sellpoint CRMS.jpg" class="project-img img-fluid mb-2" alt="UPM Sellpoint">
<div class="project-info px-2">
<h2 class="fw-bold">UPM - Sellpoint</h2>
<p class="fs-5">
A CRMS website where users can view a large collection of products and where managers
can view and edit on a large number of users, the two of which were generated from web
scraping and randomuser.me’s API respectively. The website features multiple concurrent
filtering and sorting options for the products and users (for managers), and was made
to complement a product catalog website.
<br><br>
Tech Stack: PostgreSQL, Django, Bootstrap
</p>
</div>
</div>
<div class="project-group1 d-flex flex-column mt-4 mb-3 pt-4">
<img src="assets/imgs/UPM Online Bookshop.jpg" class="project-img img-fluid mb-2" alt="UPM Code & Chill">
<div class="project-info px-2">
<h2 class="fw-bold">UPM - Code & Chill</h2>
<p class="fs-5">
An online bookshop website for manga, light novels, and western novels. Users here
can view a large gallery of such items, filter and sort them (the books have their
associated tags), view their information and author, and buy them. The buying part
features a full-fledged progress bar for the checkout, shipping, and so on.
<br><br>
Tech Stack: PostgreSQL, Django, Vue.js, Bootstrap
</p>
</div>
</div>
<div class="project-group1 d-flex flex-column mt-4 mb-3 pt-4">
<img src="assets/imgs/UPM Synergy Listmaking App.jpg" class="project-img img-fluid mb-2" alt="UPM Synergy">
<div class="project-info px-2">
<h2 class="fw-bold">UPM - Synergy</h2>
<p class="fs-5">
A Kanban-style list-making website where notes are organized in lists inside boards
that are inside cards. Users on the website can create or delete cards, add or delete
boards, and add, update, or delete notes.
<br><br>
Tech Stack: PostgreSQL, Django, Vue.js, Bootstrap
</p>
</div>
</div>
</div>
</section>
<section id="soloProjectsSection" class="bg-theme1 w-100">
<div class="solo-projects-contents d-flex flex-column">
<div class="solo-projects-top-div position-relative container d-flex flex-column pt-4">
<hr class="horizontal-divider position-absolute top-0 start-0 w-100 ms-4">
<div class="section-label bg-theme3 position-absolute rounded-pill top-0 start-0 p-3">
<h2 class="fw-bold text-white mb-0 mx-4">My Personal Projects</h2>
</div>
<div class="project-group1 d-flex flex-column mt-4 mb-3 pt-4">
<img src="assets/imgs/Numerical Analysis Calculator.jpg" class="project-img img-fluid mb-2" alt="Numerical Analysis Calculator">
<div class="project-info px-2">
<h2 class="fw-bold">Numerical Analysis Calculator</h2>
<p class="fs-5">
An online calculator I made for numerical analysis. Currently, it has support for 6 numerical
methods for nonlinear equations, and for 4 methods for numerical integration. Depending
on the method, the user can customize parameters such as but not limited to the bounds,
the max iteration, error tolerance, and so on. The calculator outputs the iterations in 4 ways
through the accordion to the left, each with varying detail regarding each iteration. You
can access the calculator here.
https://numbers00.github.io/numerical-analysis-calculator-v2/
<br><br>
Tech Stack: Vue.js, Bootstrap
</p>
</div>
</div>
</div>
<div class="solo-projects-slider-container mb-3">
<div class="solo-projects-slider">
<div class="solo-projects-container">
<img src="assets/imgs/FCC Javascript Calculator.jpg" class="solo-project-img" alt="FCC Javascript Calculator">
</div>
<div class="solo-project-container">
<img src="assets/imgs/Odin RPS Game.jpg" class="solo-project-img" alt="Odin RPS Game">
</div>
<div class="solo-project-container">
<img src="assets/imgs/Odin Etch-a-Sketch.jpg" class="solo-project-img" alt="Odin Etch-a-Sketch">
</div>
<div class="solo-project-container">
<img src="assets/imgs/Odin Landing Page.jpg" class="solo-project-img" alt="Odin Landing Page">
</div>
<div class="solo-project-container">
<img src="assets/imgs/Odin Arithmetic Calculator.jpg" class="solo-project-img" alt="Odin Arithmetic Calculator">
</div>
<div class="solo-project-container">
<img src="assets/imgs/Odin Signup Form.jpg" class="solo-project-img" alt="Odin Signup Form">
</div>
<div class="solo-project-container">
<img src="assets/imgs/FCC 25 + 5 Clock.jpg" class="solo-project-img" alt="FCC 25 + 5 Clock">
</div>
<div class="solo-project-container">
<img src="assets/imgs/FCC Markdown Previewer.jpg" class="solo-project-img" alt="FCC Markdown Previewer">
</div>
<div class="solo-project-container">
<img src="assets/imgs/FCC Random Quote Machine.jpg" class="solo-project-img" alt="FCC Random Quote Machine">
</div>
<div class="solo-project-container">
<img src="assets/imgs/FCC God Arc Technical Documentation.jpg" class="solo-project-img" alt="FCC God Arc Technical Documentation">
</div>
<div class="solo-project-container">
<img src="assets/imgs/FCC Drum Machine.jpg" class="solo-project-img" alt="FCC Drum Machine">
</div>
</div>
</div>
<div class="solo-projects-slider-desc container d-flex flex-column mb-3 py-4 text-center">
<h2 class="fw-bold">Odin RPS Game</h2>
<p class="fs-5">
Built in Vanilla HTML/CSS/JS as project submission for The Odin Project online
curriculum. The website features a smooth transition to a multi-round
rock-paper-scissors elimination game where 64 “players” (bots) fight each other
in parallel with the user and his/her bot matchup. Upon entry of name, epithet,
and/or image, the user is transported to a few seconds long matchmaking sequence
where new “players” (bots) join the game based on weighted random numbers to
simulate a real game matchmaking sequence. After finishing loading, the user must
fight his/her way out to the top with each round eliminating half of the participants
and with a timer that gets faster-and-faster. While fighting, the user can also
see what’s happening in the other (initially) 32 matchups, who threw what and who
eliminated who.
</p>
</div>
</div>
</section>
<section id="contactSection" class="bg-theme1 w-100">
<div class="contact-contents position-relative container d-flex flex-column py-4">
<hr class="horizontal-divider position-absolute top-0 start-0 w-100 ms-4">
<div class="section-label bg-theme3 position-absolute rounded-pill top-0 start-0 p-3">
<h2 class="fw-bold text-white mb-0 mx-4">Contact Me</h2>
</div>
<div class="contact-form-container d-flex flex-column mt-4 mb-3 pt-4">
<form action="https://formspree.io/f/xnqkzqjy" method="POST" class="contact-form d-flex flex-column ms-4">
<div class="form-group d-flex flex-column mb-3">
<label for="name" class="form-label fs-4 fw-bold">Name</label>
<input type="text" name="name" id="name" class="form-control" placeholder="Enter your name" required disabled>
</div>
<div class="form-group d-flex flex-column mb-3">
<label for="email" class="form-label fs-4 fw-bold">Email</label>
<input type="email" name="email" id="email" class="form-control" placeholder="Enter your email" required disabled>
</div>
<div class="form-group d-flex flex-column fs-4 fw-bold mb-3">
<label for="message" class="form-label">Message</label>
<textarea name="message" id="message" class="form-control" placeholder="Enter your message" required disabled></textarea>
</div>
<button type="submit" class="btn btn-success mb-3">Submit</button>
</form>
</div>
</section>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tiny-slider/2.6.0/min/tiny-slider.js"></script>
<script src="https://smtpjs.com/v3/smtp.js"></script>
<script src="script.js" type="module"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"></script>
</body>
</html>