-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
690 lines (688 loc) · 23.2 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
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stanley's Portfolio</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/favicon_package_v0.16/favicon.ico"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./assets/favicon_package_v0.16/favicon.ico"
/>
<link rel="manifest" href="/site.webmanifest" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#00000" />
<link rel="stylesheet" href="main.css" />
<link
href="https://api.fontshare.com/v2/css?f[]=satoshi@400,401,700,1&display=swap"
rel="stylesheet"
/>
<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=Inter:wght@100..900&display=swap"
rel="stylesheet"
/>
</head>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-7LBRK8M8XS"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-7LBRK8M8XS");
</script>
<body>
<!-- nav -->
<nav>
<div class="overlay"></div>
<ul class="sidebar">
<button id="close-button" onclick="closeSidebar()">
<p>Close</p>
<svg
xmlns="http://www.w3.org/2000/svg"
height="24px"
viewBox="0 -960 960 960"
width="24px"
fill="black"
>
<path
d="m256-200-56-56 224-224-224-224 56-56 224 224 224-224 56 56-224 224 224 224-56 56-224-224-224 224Z"
/>
</svg>
</button>
<li>
<a href="#home">Home</a>
</li>
<li>
<a href="#about">About Me</a>
</li>
<li>
<a href="#skills">Skills</a>
</li>
<li>
<a href="#projects">Projects</a>
</li>
<li id="contact-button">
<a href="#contact">Contact</a>
</li>
</ul>
<ul>
<li id="logo">SK Portfolio</li>
<li class="page-buttons">
<a href="#home">Home</a>
</li>
<li class="page-buttons">
<a href="#about">About Me</a>
</li>
<li class="page-buttons">
<a href="#skills">Skills</a>
</li>
<li class="page-buttons">
<a class="page-buttons" href="#projects">Projects</a>
</li>
<button class="page-buttons" id="contact-button">
<a href="#contact">Contact</a>
</button>
<li id="menu-icon" onclick="revealSidebar()">
<a>
<svg
id="menu-icon-svg"
xmlns="http://www.w3.org/2000/svg"
height="24px"
viewBox="0 -960 960 960"
width="24px"
fill="black"
>
<path
d="M120-240v-80h720v80H120Zm0-200v-80h720v80H120Zm0-200v-80h720v80H120Z"
/>
</svg>
</a>
</li>
</ul>
</nav>
<!-- end nav -->
<!-- start sections -->
<div class="sections">
<!-- section 1: home -->
<section class="home hidden" id="home">
<div id="top-line">
<h1>Hey there!</h1>
<picture>
<div>
<img
id="soba-img"
src="./assets/images/SobaSkee.png"
alt="Soba Icon"
/>
</div>
</picture>
</div>
<div id="middle-line">
<h1 class="title">I’m Stanley.</h1>
</div>
<div class="name-imgs">
<div class="lottie-animation1-container">
<script
src="https://unpkg.com/@dotlottie/player-component@latest/dist/dotlottie-player.mjs"
type="module"
></script>
<dotlottie-player
id="lottie-animation1"
src="https://lottie.host/f9d710b4-05f6-414b-b27b-606d57e92271/1NXFujYP0g.json"
background="transparent"
speed="1"
direction="1"
playMode="normal"
autoplay
></dotlottie-player>
</div>
<img
id="calligraphy-img"
src="./assets/images/stanley-chinese.svg"
alt=""
/>
</div>
<div class="social-icons">
<ul>
<li class="icon">
<a href="https://github.com/SobaSkee" target="_blank">
<img src="./assets/icons/github-icon.svg" alt="Github Icon" />
</a>
</li>
<li class="icon">
<a href="https://linkedin.com/in/stanley-ke/" target="_blank">
<img
src="./assets/icons/linkedin-icon.svg"
alt="Linkedin Icon"
/>
</a>
</li>
<li class="icon">
<a
href="https://discord.com/users/353589602935635969"
target="_blank"
>
<img src="./assets/icons/discord-icon.svg" alt="Discord Icon" />
</a>
</li>
<li class="icon">
<a href="https://www.instagram.com/SobaSke/" target="_blank">
<img
src="./assets/icons/instagram-icon.svg"
alt="Instagram Icon"
/>
</a>
</li>
</ul>
</div>
</section>
<!-- section 2: about -->
<section class="about hidden" id="about">
<h1>About Me</h1>
<div class="container">
<div class="image-wrapper">
<img src="./assets/images/Boats.JPG" alt="" />
</div>
<div class="text-wrapper">
<p>
Hello! I'm a second-year computer science student at the
University of Florida with a passion for
<span>front-end web development</span> and creating new things.
</p>
<p>
While my current goal is to secure a swe internship, I'm learning
to enjoy the journey. As Yoshihiro Togashi, one of my favorite
manga authors, once said:
</p>
<blockquote>
<p>
<em
>You should enjoy the little detours to the fullest. Because
that's where you'll find the things more important than what
you want.</em
>
</p>
</blockquote>
<p>
There's a vast sea of knowledge I've yet to explore. Join me as I
set sail!
</p>
</div>
</div>
</section>
<!--section 3: skills-->
<section class="skills hidden" id="skills">
<div class="container">
<h1>Skills</h1>
<h2>Development Tools</h2>
<div class="slider">
<div class="slide-track" id="left-slide-track">
<div class="slide">
<img src="./assets/icons/html-icon.svg" alt="html" />
<p>HTML</p>
</div>
<div class="slide">
<img src="./assets/icons/css-icon.svg" alt="css" />
<p>CSS</p>
</div>
<div class="slide">
<img
src="./assets/icons/javascript-icon.svg"
alt="javascript"
/>
<p>JS</p>
</div>
<div class="slide">
<img src="./assets/icons/react-icon.svg" alt="react" />
<p>React</p>
</div>
<div class="slide">
<img src="./assets/icons/python-icon.svg" alt="python" />
<p>Python</p>
</div>
<div class="slide">
<img src="./assets/icons/cplusplus-icon.svg" alt="cplusplus" />
<p>C++</p>
</div>
<div class="slide">
<img src="./assets/icons/html-icon.svg" alt="html" />
<p>HTML</p>
</div>
<div class="slide">
<img src="./assets/icons/css-icon.svg" alt="css" />
<p>CSS</p>
</div>
<div class="slide">
<img
src="./assets/icons/javascript-icon.svg"
alt="javascript"
/>
<p>JS</p>
</div>
<div class="slide">
<img src="./assets/icons/react-icon.svg" alt="react" />
<p>React</p>
</div>
<div class="slide">
<img src="./assets/icons/python-icon.svg" alt="python" />
<p>Python</p>
</div>
<div class="slide">
<img src="./assets/icons/cplusplus-icon.svg" alt="cplusplus" />
<p>C++</p>
</div>
</div>
</div>
<h2>Environments</h2>
<div class="slider">
<div class="slide-track" id="right-slide-track">
<div class="slide">
<img src="./assets/icons/figma-icon.svg" alt="figma" />
<p>Figma</p>
</div>
<div class="slide">
<img src="./assets/icons/photoshop-icon.svg" alt="photoshop" />
<p>Photoshop</p>
</div>
<div class="slide">
<img src="./assets/icons/git-icon.svg" alt="git" />
<p>Git</p>
</div>
<div class="slide">
<img src="./assets/icons/vscode-icon.svg" alt="vscode" />
<p>VSCode</p>
</div>
<div class="slide">
<img src="./assets/icons/pycharm-icon.svg" alt="pycharm" />
<p>Pycharm</p>
</div>
<div class="slide">
<img
src="./assets/icons/microsoft-suite-icon.svg"
alt="ms suite"
/>
<p>MS Suite</p>
</div>
<div class="slide">
<img src="./assets/icons/figma-icon.svg" alt="figma" />
<p>Figma</p>
</div>
<div class="slide">
<img src="./assets/icons/photoshop-icon.svg" alt="photoshop" />
<p>Photoshop</p>
</div>
<div class="slide">
<img src="./assets/icons/git-icon.svg" alt="git" />
<p>Git</p>
</div>
<div class="slide">
<img src="./assets/icons/vscode-icon.svg" alt="vscode" />
<p>VSCode</p>
</div>
<div class="slide">
<img src="./assets/icons/pycharm-icon.svg" alt="pycharm" />
<p>Pycharm</p>
</div>
<div class="slide">
<img
src="./assets/icons/microsoft-suite-icon.svg"
alt="ms suite"
/>
<p>MS Suite</p>
</div>
</div>
</div>
</div>
</section>
<!--section 4: projects-->
<section class="projects hidden" id="projects">
<h1>Projects</h1>
<div class="container">
<div class="card card-1 hidden">
<div class="card-content">
<h2 class="card-title">Minesweeper</h2>
<div class="tools">
<div class="tool">
<img
src="./assets/icons/cplusplus-icon.svg"
alt="cplusplus"
/>
<p>C++</p>
</div>
</div>
<p class="card-description">
Built minesweeper with a leaderboard using SFML libraries, fully
interactive and playable
</p>
<div class="learn-more">
<img src="./assets/icons/github-icon.svg" alt="Github Icon" />
<p>Repository</p>
<a
href="https://github.com/SobaSkee/Minesweeper"
target="_blank"
>
<img
src="./assets/icons/external-link-icon.svg"
alt="external link"
/>
</a>
</div>
</div>
</div>
<div class="card card-2 hidden">
<div class="card-content">
<h2 class="card-title">PizzaHat</h2>
<div class="tools">
<div class="tool">
<img src="./assets/icons/html-icon.svg" alt="html" />
<p>HTML</p>
</div>
<div class="tool">
<img src="./assets/icons/css-icon.svg" alt="css" />
<p>CSS</p>
</div>
<div class="tool">
<img
src="./assets/icons/javascript-icon.svg"
alt="javascript"
/>
<p>Javascript</p>
</div>
</div>
<p class="card-description">
Mockup of a pizza restaurant ordering page with smooth
transitions and selectable options
</p>
<div class="learn-more">
<img src="./assets/icons/github-icon.svg" alt="Github Icon" />
<p>Repository</p>
<a href="https://github.com/SobaSkee/pizzahat" target="_blank">
<img
src="./assets/icons/external-link-icon.svg"
alt="external link"
/>
</a>
</div>
</div>
</div>
<div class="card card-3 hidden">
<div class="card-content">
<h2 class="card-title">SobaCinema</h2>
<div class="tools">
<div class="tool">
<img src="./assets/icons/html-icon.svg" alt="htmk" />
<p>HTML</p>
</div>
<div class="tool">
<img src="./assets/icons/css-icon.svg" alt="css" />
<p>CSS</p>
</div>
<div class="tool">
<img src="./assets/icons/react-icon.svg" alt="react" />
<p>React</p>
</div>
<div class="tool">
<img
src="./assets/icons/javascript-icon.svg"
alt="javascript"
/>
<p>Javascript</p>
</div>
</div>
<p class="card-description">
Utilized the react framework and incorporated the OMDb API to
build a simple searchable movie website
</p>
<div class="learn-more">
<img src="./assets/icons/github-icon.svg" alt="Github Icon" />
<p>Repository</p>
<a
href="https://github.com/SobaSkee/react-movie-app"
target="_blank"
>
<img
src="./assets/icons/external-link-icon.svg"
alt="external link"
/>
</a>
</div>
</div>
<!-- <img src="./assets/images/sobacinema-screenshot.png" alt=""> -->
</div>
<div class="card card-5 hidden">
<div class="card-content">
<h2 class="card-title">EnviroPact</h2>
<div class="tools">
<div class="tool">
<img src="./assets/icons/react-icon.svg" alt="react" />
<p>React</p>
</div>
<div class="tool">
<img
src="./assets/icons/tailwindcss-icon.svg"
alt="tailwind css"
/>
<p>Tailwind CSS</p>
</div>
<div class="tool">
<img
src="./assets/icons/javascript-icon.svg"
alt="javascript"
/>
<p>Javascript</p>
</div>
</div>
<p class="card-description">
Designed and developed an engaging web platform for SASEHacks
2024, fostering community involvement in local sustainable
events
</p>
<div class="learn-more">
<img src="./assets/icons/github-icon.svg" alt="Github Icon" />
<p>Repository</p>
<a
href="https://github.com/Kavipatel0/SASEHacks2024"
target="_blank"
>
<img
src="./assets/icons/external-link-icon.svg"
alt="external link"
/>
</a>
</div>
</div>
<!-- <img src="./assets/images/sobacinema-screenshot.png" alt=""> -->
</div>
<div class="card card-4 hidden">
<div class="card-content">
<h2 class="card-title">Something special...</h2>
<div class="tools">
<div class="tool">
<img src="" alt="" />
<p>...</p>
</div>
</div>
<p class="card-description">Coming soon...</p>
<div class="learn-more">
<img src="./assets/icons/github-icon.svg" alt="Github Icon" />
<p>Repository</p>
<a>
<img
src="./assets/icons/external-link-icon.svg"
alt="external link"
/>
</a>
</div>
</div>
</div>
</div>
</section>
<!--section 5: contacts-->
<section class="contact hidden" id="contact">
<div class="contact-container">
<form action="https://api.web3forms.com/submit" method="post">
<input
type="hidden"
name="access_key"
value="3764e507-7d2b-4e4a-9398-08b31f19b004"
/>
<h1>Let’s Talk</h1>
<div class="name-form">
<label for="first-name">
<p>First name</p>
<input
type="text"
id="first-name"
name="first"
placeholder="Somebody"
autocomplete="off"
required
/>
</label>
<label for="last-name">
<p>Last name</p>
<input
type="text"
id="last-name"
name="last"
placeholder="Cool"
autocomplete="off"
required
/>
</label>
</div>
<div class="email-form">
<label for="email">
<p>Email</p>
<input
type="email"
id="email"
name="email"
placeholder="something@email.com"
autocomplete="off"
required
/>
</label>
<label for="message">
<p>Message</p>
<textarea
name="message"
id="message"
cols="60"
rows="5"
placeholder="Enter your question or message"
autocomplete="off"
required
></textarea>
</label>
<button type="submit">Send email</button>
</div>
</form>
<div class="resume-container">
<h2>My Resume</h2>
<a
id="download-button"
href="./assets/Stanley_Ke_Resume.pdf"
download="Stanley_Ke_Resume.pdf"
>
<p>Download</p>
<svg
id="download-svg"
width="25"
height="26"
viewBox="0 0 25 26"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g id="download-04">
<path
id="Vector"
d="M12.5002 15.6042V5.1875M12.5002 15.6042C11.7708 15.6042 10.408 13.5268 9.896 13M12.5002 15.6042C13.2295 15.6042 14.5924 13.5268 15.1043 13"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
id="Vector_2"
d="M20.8332 17.6875C20.8332 20.2729 20.2936 20.8125 17.7082 20.8125H7.2915C4.70609 20.8125 4.1665 20.2729 4.1665 17.6875"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</g>
</svg>
</a>
<h2>Connect with me here</h2>
<div class="social-icons">
<ul>
<li class="icon">
<a href="https://github.com/SobaSkee" target="_blank">
<img
src="./assets/icons/github-icon.svg"
alt="Github Icon"
/>
</a>
</li>
<li class="icon">
<a href="https://linkedin.com/in/stanley-ke/" target="_blank">
<img
src="./assets/icons/linkedin-icon.svg"
alt="Linkedin Icon"
/>
</a>
</li>
<li class="icon">
<a
href="https://discord.com/users/353589602935635969"
target="_blank"
>
<img
src="./assets/icons/discord-icon.svg"
alt="Discord Icon"
/>
</a>
</li>
<li class="icon">
<a href="https://www.instagram.com/SobaSke/" target="_blank">
<img
src="./assets/icons/instagram-icon.svg"
alt="Instagram Icon"
/>
</a>
</li>
</ul>
</div>
</div>
</div>
</section>
</div>
<!-- end sections -->
<footer>
<a id="download-icon" href="#home">
<img src="./assets/icons/up-icon.svg" alt="up icon" />
</a>
<div class="container">
<p>© 2024 SK</p>
</div>
</footer>
</body>
<script src="main.js"></script>
</html>