-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJan.html
551 lines (497 loc) · 26.5 KB
/
Jan.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
<!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" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous" />
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<style>
html::-webkit-scrollbar {
display: none;
}
html {
scrollbar-width: none;
overflow: visible;
}
body {
font-family: Lato;
}
nav {
background-color: #001c0a;
border-bottom: 2px solid #06ab69ca;
}
.footer-link {
color: white;
text-decoration: inherit;
}
.footer-link:hover {
color: white;
text-decoration: inherit;
}
.footer-link:active {
color: white;
text-decoration: inherit;
}
.nav {
padding-left: 10%;
padding-right: 10%;
padding-top: 1%;
padding-bottom: 1%;
}
nav .navbar-collapse ul li a {
color: white;
}
nav .navbar-collapse ul li a:hover {
color: #b6eada;
transition-duration: 1000ms;
}
nav .navbar-collapse ul li {
padding-left: 2%;
}
.nav-logo {
color: white;
}
.nav-logo:hover {
color: #b6eada;
transition-duration: 1000ms;
}
.nav-span {
display: inline;
width: 2.4rem;
}
.anchor {
display: block;
position: relative;
top: -85px;
visibility: hidden;
}
.layout-dark {
min-height: 100vh;
background-color: #033119e5;
}
.layout-light {
min-height: 100vh;
background-color: #e5e7ea;
}
.box-dark {
background-color: #033119;
padding: 3rem;
}
.box-light {
background-color: #e5e7ea;
padding: 3rem;
}
.home-name {
font-size: 6rem;
text-transform: uppercase;
background: linear-gradient(to right, #5b8fb9, #b6eada, #5b8fb9, #b6eada, #5b8fb9);
background-size: 300% 300%;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
animation: animate 12s linear infinite;
}
@keyframes animate {
0% {
background-position: 400%;
}
100% {
background-position: 0%;
}
}
.updown-animate {
animation-name: infiniteupdown;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-timing-function: ease;
transition: all .2s;
}
@keyframes infiniteupdown {
0% {
transform: translateY(2px);
}
50% {
transform: translateY(-3px);
}
100% {
transform: translateY(2px);
}
}
.github-btn {
width: 10rem;
cursor: pointer;
background-color: #e5e7ea;
border: 1px solid #e5e7ea;
border-radius: 0.5rem;
color: #000;
padding: 0.75rem 2rem;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 1rem;
}
.github-btn:hover {
background-color: transparent;
border: 1px solid #e5e7ea;
color: #e5e7ea;
transition-duration: 500ms;
}
.about-prof {
width: 20rem;
border-radius: 1rem;
}
.about-header {
padding-top: 5rem;
padding-bottom: 5rem;
}
.footer {
background-color: #023308e5;
padding-top: 4.3rem;
padding-bottom: 2.4rem;
}
.footer-point {
font-size: 0.7rem;
opacity: 50%;
}
@media only screen and (max-width: 768px) {
.navbar-collapse {
padding-top: 1rem;
padding-bottom: 1rem;
}
.home-name {
font-size: 3.3rem;
}
.nav {
padding-left: 10%;
padding-right: 5%;
padding-top: 1%;
padding-bottom: 1%;
}
.about-prof {
width: 15rem;
border-radius: 50%;
}
.about-header {
padding-top: 3rem;
padding-bottom: 2rem;
}
.anchor {
top: -70px;
}
}
</style>
<title>Janrainjerr</title>
</head>
<header>
<nav class="navbar navbar-expand-lg fixed-top">
<div class="container-fluid nav">
<a class="navbar-brand nav-logo" href="#">
</svg>Janrainjerr</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<svg width="31px" height="31px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"
stroke="#000000">
<g id="SVGRepo_bgCarrier" stroke-width="0" />
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round" />
<g id="SVGRepo_iconCarrier">
<g clip-path="url(#clip0_429_11066)">
<path d="M3 6.00092H21M3 12.0009H21M3 18.0009H21" stroke="#ffffff" stroke-width="2.5"
stroke-linecap="round" stroke-linejoin="round" />
</g>
<defs>
<clipPath id="clip0_429_11066">
<rect width="24" height="24" fill="white" transform="translate(0 0.000915527)" />
</clipPath>
</defs>
</g>
</svg>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#skills">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#education">Education</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
<span class="nav-span"></span>
</ul>
</div>
</div>
</nav>
</header>
<body>
<!--Home-->
<div class="px-4 hero d-flex align-items-center justify-content-center layout-dark">
<div class="page-header text-center">
<h1 class="fw-bold mb-0 home-name">PCHANDEC.</h1>
<h2 class="fw-light mt-3 mb-5 text-white" style="font-size: 1.5rem; opacity: 50%">
I'm a Web Developers
</h2>
<div class="d-flex flex-md-row flex-column align-items-center justify-content-center gap-4 contact">
<a class="github-btn fw-bold" href="/~https://github.com/janrainjer" target="_blank">
<svg class="mb-1" stroke="currentColor" fill="currentColor" stroke-width="0"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512" width="1em" height="1em">
<path
d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z">
</path>
</svg>
<span>Github</span>
</a>
</div>
<a href="#about">
<div style="position: absolute; left: 0;width: 100%; margin-top: 8rem;">
<span><svg width="2.2rem" height="2.2rem" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"
stroke="#b6eada">
<g id="SVGRepo_bgCarrier" stroke-width="0" />
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round" />
<g id="SVGRepo_iconCarrier">
<path
d="M12 9V6M12 22V22C15.866 22 19 18.866 19 15V9C19 5.13401 15.866 2 12 2V2C8.13401 2 5 5.13401 5 9V15C5 18.866 8.13401 22 12 22Z"
stroke="#b6eada" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</g>
</svg>
</span>
<span class="text-white" style="opacity: 80%; ">Scroll down</span>
<span><svg width="1.5rem" height="1.5rem" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"
class="updown-animate">
<g id="SVGRepo_bgCarrier" stroke-width="0" />
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round" />
<g id="SVGRepo_iconCarrier">
<path d="M12 7L12 16" stroke="#b6eada" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" />
<path d="M8 13L12 17L16 13" stroke="#b6eada" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" />
</g>
</svg>
</span>
</div>
</a>
</div>
</div>
<!--About Me-->
<span id="about" class="anchor"></span>
<div id="about" class="container-fluid" style="background-color: #e5e7ea; overflow-x: hidden;">
<div class="layout-light container">
<h1 class="text-center fw-bold about-header" >
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" fill="currentColor" class="bi bi-person-fill"
viewBox="0 0 16 16">
<path d="M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"></path>
</svg>
About Me
</h1>
<div class="d-flex flex-lg-row flex-column container-fluid align-items-center justify-content-center gap-4 pb-5">
<div class="p-md-5">
<img src="https://media.giphy.com/media/5xzNkYpGPaxmcGVYoB/giphy.gif" class="about-prof shadow"
data-aos="fade-right" />
</div>
<div class="p-md-5 p-4 w-100 shadow" style="
text-indent: 2rem;
background-color: white;
border-radius: 1rem;
" data-aos="fade-left">
Web Developers are website developers. It is a job title that covers all aspects of website maintenance. Except for the website design It must be explained that in the first step of website design, it will be the Web Designer's duty to design the look, style, and color of the website to meet the brand's needs. Through the use of Photoshop or Illustrator and Web Developers will be responsible for making that website come true.
</div>
</div>
</div>
<!--Skills-->
<span id="skills" class="anchor"></span>
<div id="skills" class="container-fluid box-dark">
<div class="layout-dark container">
<h1 class="text-center fw-bold about-header text-white">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" fill="currentColor" class="bi bi-bullseye"
viewBox="0 0 16 16">
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"></path>
<path d="M8 13A5 5 0 1 1 8 3a5 5 0 0 1 0 10zm0 1A6 6 0 1 0 8 2a6 6 0 0 0 0 12z"></path>
<path d="M8 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6zm0 1a4 4 0 1 0 0-8 4 4 0 0 0 0 8z"></path>
<path d="M9.5 8a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0z"></path>
</svg>
Skills
</h1>
<!--Programming Languages-->
<div class="container w-100 p-4 shadow mb-5" style="background-color: white; border-radius: 1rem"
data-aos="zoom-in">
<h2 class="text-whtie text-center mb-4">Programming Languages</h2>
<div class="d-flex flex-lg-row flex-column align-items-center justify-content-center gap-3">
<div><img src="https://upload.wikimedia.org/wikipedia/commons/1/18/C_Programming_Language.svg" alt="C logo"
style="width: 3rem" class="mx-auto mx-md-3 md-my-0 my-2" /></div>
<div><img src="https://upload.wikimedia.org/wikipedia/commons/1/18/ISO_C%2B%2B_Logo.svg" alt="C++ logo"
style="width: 3rem" class="mx-auto mx-md-3 md-my-0 my-2" /></div>
<div><img src="https://upload.wikimedia.org/wikipedia/commons/1/1f/Python_logo_01.svg" alt="Python logo"
style="width: 4rem" class="mx-auto mx-md-3 md-my-0 my-2" /></div>
<div><img src=" https://cdn.freebiesupply.com/logos/large/2x/java-4-logo-png-transparent.png" alt="Java logo"
style="width: 2.7rem" class="mx-auto mx-md-3 md-my-0 my-2" /></div>
<div><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/html5/html5-original.svg" alt="html5 logo"
style="width: 3rem" class="mx-auto mx-md-3 md-my-0 my-2" /></div>
<div><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/css3/css3-original.svg" alt="css3 logo"
style="width: 3rem" class="mx-auto mx-md-3 md-my-0 my-2" /></div>
<div><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/javascript/javascript-original.svg"
alt="JS logo" style="width: 3rem" class="mx-auto mx-md-3 md-my-0 my-2" /></div>
<div><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/typescript/typescript-original.svg"
alt="TS logo" style="width: 3rem" class="mx-auto mx-md-3 md-my-0 my-2" /></div>
<div><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/go/go-original-wordmark.svg"
alt="golang logo" style="width: 5rem" class="mx-auto mx-md-3 md-my-0 my-2" /></div>
</div>
</div>
<!--Frameworks & Libs-->
<div class="container w-100 p-4 shadow mb-5" style="background-color: white; border-radius: 1rem"
data-aos="zoom-in">
<h2 class="text-whtie text-center mb-4">Frameworks & Libraries</h2>
<div class="d-flex flex-lg-row flex-column align-items-center justify-content-center gap-3">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/react/react-original.svg" alt="React logo"
style="width: 3rem" class="mx-auto mx-md-3 md-my-0 my-2" />
<img src=" https://cdn.jsdelivr.net/gh/devicons/devicon/icons/nextjs/nextjs-original.svg" alt="Next logo"
style="width: 3rem" class="mx-auto mx-md-3 md-my-0 my-2" />
<img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Bootstrap_logo.svg/1280px-Bootstrap_logo.svg.png"
alt="Bootstrap logo" style="height: 3rem; width: 3rem" class="mx-auto mx-md-3 md-my-0 my-2" />
<img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Tailwind_CSS_Logo.svg/2048px-Tailwind_CSS_Logo.svg.png"
alt="Tailwindcss logo" style="height: 3rem; width: 3rem;" class="mx-auto mx-md-3 md-my-0 my-2" />
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/nodejs/nodejs-original.svg" alt="Node logo"
style="height: 3rem" class="mx-auto mx-md-3 md-my-0 my-2" />
</div>
</div>
<!--Tools-->
<div class="container w-100 p-4 shadow mb-5" style="background-color: white; border-radius: 1rem"
data-aos="zoom-in">
<h2 class="text-whtie text-center mb-4">Programming Tools</h2>
<div class="d-flex flex-lg-row flex-column align-items-center justify-content-center gap-3">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/linux/linux-original.svg" alt="Linux logo"
style="width: 3rem" class="mx-auto mx-md-3 md-my-0 my-2" />
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/git/git-original.svg" alt="Git logo"
style="width: 3rem" class="mx-auto mx-md-3 md-my-0 my-2" />
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Vimlogo.svg/1022px-Vimlogo.svg.png"
alt="Vim logo" style="width: 3rem" class="mx-auto mx-md-3 md-my-0 my-2" />
</div>
</div>
<!--Other Tools-->
<div class="container w-100 p-4 shadow mb-5" style="background-color: white; border-radius: 1rem"
data-aos="zoom-in">
<h2 class="text-whtie text-center mb-4">Other Tools</h2>
<div class="d-flex flex-lg-row flex-column align-items-center justify-content-center gap-3">
<img
src="/~https://github.com/janrainjer/introduction-to-computer-engineering-lab/assets/88389821/74df1ff0-b8a7-40f6-815d-b9b2f6fe20ae"
alt="Figma logo" style="width: 3rem" class="mx-auto mx-md-3 md-my-0 my-2" />
<img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Adobe_Photoshop_CC_icon.svg/1051px-Adobe_Photoshop_CC_icon.svg.png"
alt="Photoshop logo" style="width: 3rem" class="mx-auto mx-md-3 md-my-0 my-2" />
<img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Adobe_Photoshop_Lightroom_CC_logo.svg/1200px-Adobe_Photoshop_Lightroom_CC_logo.svg.png"
alt="Lightroom logo" style="width: 3rem" class="mx-auto mx-md-3 md-my-0 my-2" />
<img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Adobe_Premiere_Pro_CC_icon.svg/2101px-Adobe_Premiere_Pro_CC_icon.svg.png"
alt="Premierpro logo" style="width: 3rem" class="y-0 my-2" />
</div>
</div>
</div>
</div>
<!--Education-->
<span id="education" class="anchor"></span>
<div id="education" class="container-fluid" style="background-color: #e5e7ea; overflow-x: hidden;">
<div class="layout-light container">
<h1 class="text-center fw-bold about-header">
<svg width="3rem" height="3rem" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="SVGRepo_bgCarrier" stroke-width="0" />
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round" />
<g id="SVGRepo_iconCarrier">
<path
d="M22 4.66994V16.74C22 17.7 21.22 18.5999 20.26 18.7199L19.93 18.76C17.75 19.05 14.39 20.1599 12.47 21.2199C12.21 21.3699 11.78 21.3699 11.51 21.2199L11.47 21.2C9.54997 20.15 6.20003 19.05 4.03003 18.76L3.73999 18.7199C2.77999 18.5999 2 17.7 2 16.74V4.65993C2 3.46993 2.96997 2.56994 4.15997 2.66994C6.25997 2.83994 9.43997 3.89997 11.22 5.00997L11.47 5.15993C11.76 5.33994 12.24 5.33994 12.53 5.15993L12.7 5.04995C13.33 4.65995 14.13 4.26994 15 3.91994V7.99996L17 6.66994L19 7.99996V2.77999C19.27 2.72999 19.53 2.69995 19.77 2.67995H19.83C21.02 2.57995 22 3.46994 22 4.66994Z"
stroke="#000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M12 5.48999V20.49" stroke="#000000" stroke-width="1.5" stroke-linecap="round"
stroke-linejoin="round" />
<path d="M19 2.78003V8L17 6.66998L15 8V3.91998C16.31 3.39998 17.77 2.98003 19 2.78003Z" stroke="#000000"
stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</g>
</svg>
Education
</h1>
<div
class="d-flex flex-lg-row flex-column-reverse flex-lg-row flex-column container-fluid align-items-center justify-content-center gap-4 pb-5">
<div class="p-md-5 p-4 w-100 shadow" style="
text-indent: 2rem;
background-color: white;
border-radius: 1rem;
" data-aos="fade-right">
computer engineering (Computer Engineering), King Mongkut's Institute of Technology Ladkrabang Computer engineering is a course that relies on engineering fundamentals. and principles of numerical calculation Therefore, there must be a relationship with other engineering disciplines in the Faculty of Engineering that support the teaching of basic engineering subjects. and the Faculty of Science that supports teaching basic science subjects and mathematics including the Faculty of Industrial Education with teaching English language groups and teaching social science and humanities subjects.
</div>
<div class="p-md-5">
<img src="https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExeXBiZDh5MHd6cnR2NHcxdm5kc2thZmxjcWczazMybDN4ZzAxdWo5ZCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9cw/fIwbvxHSLmyEi6Jux2/giphy.gif" class="about-prof shadow"
data-aos="fade-left" />
</div>
</div>
</div>
</div>
<!--Footer-->
<span id="contact" class="anchor"></span>
<footer class="footer text-white">
<div class="d-flex justify-content-center gap-3 pb-5">
<a href="/~https://github.com/Janrainjerr
" target="_blank">
<svg style="fill: white;" xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="currentColor"
viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z">
</path>
</svg>
</a>
<a href="https://www.facebook.com/jan.phattharaphorn?mibextid=LQQJ4d" target="_blank"><svg fill="#ffffff"
width="2.2rem" height="2.2rem" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg"
stroke="#ffffff">
<g id="SVGRepo_bgCarrier" stroke-width="0" />
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round" />
<g id="SVGRepo_iconCarrier">
<title>facebook</title>
<path
d="M30.996 16.091c-0.001-8.281-6.714-14.994-14.996-14.994s-14.996 6.714-14.996 14.996c0 7.455 5.44 13.639 12.566 14.8l0.086 0.012v-10.478h-3.808v-4.336h3.808v-3.302c-0.019-0.167-0.029-0.361-0.029-0.557 0-2.923 2.37-5.293 5.293-5.293 0.141 0 0.281 0.006 0.42 0.016l-0.018-0.001c1.199 0.017 2.359 0.123 3.491 0.312l-0.134-0.019v3.69h-1.892c-0.086-0.012-0.185-0.019-0.285-0.019-1.197 0-2.168 0.97-2.168 2.168 0 0.068 0.003 0.135 0.009 0.202l-0.001-0.009v2.812h4.159l-0.665 4.336h-3.494v10.478c7.213-1.174 12.653-7.359 12.654-14.814v-0z" />
</g>
</svg>
</a>
<a href="https://instagram.com/janrainjerr?igshid=YmMyMTA2M2Y=" target="_blank">
<svg fill="#ffffff" width="2.2rem" height="2.2rem" viewBox="0 0 32 32" version="1.1"
xmlns="http://www.w3.org/2000/svg" stroke="#ffffff">
<g id="SVGRepo_bgCarrier" stroke-width="0" />
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round" />
<g id="SVGRepo_iconCarrier">
<title>instagram</title>
<path
d="M25.805 7.996c0 0 0 0.001 0 0.001 0 0.994-0.806 1.799-1.799 1.799s-1.799-0.806-1.799-1.799c0-0.994 0.806-1.799 1.799-1.799v0c0.993 0.001 1.798 0.805 1.799 1.798v0zM16 20.999c-2.761 0-4.999-2.238-4.999-4.999s2.238-4.999 4.999-4.999c2.761 0 4.999 2.238 4.999 4.999v0c0 0 0 0.001 0 0.001 0 2.76-2.237 4.997-4.997 4.997-0 0-0.001 0-0.001 0h0zM16 8.3c0 0 0 0-0 0-4.253 0-7.7 3.448-7.7 7.7s3.448 7.7 7.7 7.7c4.253 0 7.7-3.448 7.7-7.7v0c0-0 0-0 0-0.001 0-4.252-3.447-7.7-7.7-7.7-0 0-0 0-0.001 0h0zM16 3.704c4.003 0 4.48 0.020 6.061 0.089 1.003 0.012 1.957 0.202 2.84 0.538l-0.057-0.019c1.314 0.512 2.334 1.532 2.835 2.812l0.012 0.034c0.316 0.826 0.504 1.781 0.516 2.778l0 0.005c0.071 1.582 0.087 2.057 0.087 6.061s-0.019 4.48-0.092 6.061c-0.019 1.004-0.21 1.958-0.545 2.841l0.019-0.058c-0.258 0.676-0.64 1.252-1.123 1.726l-0.001 0.001c-0.473 0.484-1.049 0.866-1.692 1.109l-0.032 0.011c-0.829 0.316-1.787 0.504-2.788 0.516l-0.005 0c-1.592 0.071-2.061 0.087-6.072 0.087-4.013 0-4.481-0.019-6.072-0.092-1.008-0.019-1.966-0.21-2.853-0.545l0.059 0.019c-0.676-0.254-1.252-0.637-1.722-1.122l-0.001-0.001c-0.489-0.47-0.873-1.047-1.114-1.693l-0.010-0.031c-0.315-0.828-0.506-1.785-0.525-2.785l-0-0.008c-0.056-1.575-0.076-2.061-0.076-6.053 0-3.994 0.020-4.481 0.076-6.075 0.019-1.007 0.209-1.964 0.544-2.85l-0.019 0.059c0.247-0.679 0.632-1.257 1.123-1.724l0.002-0.002c0.468-0.492 1.045-0.875 1.692-1.112l0.031-0.010c0.823-0.318 1.774-0.509 2.768-0.526l0.007-0c1.593-0.056 2.062-0.075 6.072-0.075zM16 1.004c-4.074 0-4.582 0.019-6.182 0.090-1.315 0.028-2.562 0.282-3.716 0.723l0.076-0.025c-1.040 0.397-1.926 0.986-2.656 1.728l-0.001 0.001c-0.745 0.73-1.333 1.617-1.713 2.607l-0.017 0.050c-0.416 1.078-0.67 2.326-0.697 3.628l-0 0.012c-0.075 1.6-0.090 2.108-0.090 6.182s0.019 4.582 0.090 6.182c0.028 1.315 0.282 2.562 0.723 3.716l-0.025-0.076c0.796 2.021 2.365 3.59 4.334 4.368l0.052 0.018c1.078 0.415 2.326 0.669 3.628 0.697l0.012 0c1.6 0.075 2.108 0.090 6.182 0.090s4.582-0.019 6.182-0.090c1.315-0.029 2.562-0.282 3.716-0.723l-0.076 0.026c2.021-0.796 3.59-2.365 4.368-4.334l0.018-0.052c0.416-1.078 0.669-2.326 0.697-3.628l0-0.012c0.075-1.6 0.090-2.108 0.090-6.182s-0.019-4.582-0.090-6.182c-0.029-1.315-0.282-2.562-0.723-3.716l0.026 0.076c-0.398-1.040-0.986-1.926-1.729-2.656l-0.001-0.001c-0.73-0.745-1.617-1.333-2.607-1.713l-0.050-0.017c-1.078-0.416-2.326-0.67-3.628-0.697l-0.012-0c-1.6-0.075-2.108-0.090-6.182-0.090z" />
</g>
</svg>
</div>
<div class="container text-center pb-3" style="width: 18rem">
<a href="#" class="footer-link">Home</a>
<span class="footer-point">•</span>
<a href="#about" class="footer-link">About</a>
<span class="footer-point">•</span>
<a href="#skills" class="footer-link">Skills</a>
<span class="footer-point">•</span>
<a href="#education" class="footer-link">Education</a>
</div>
</div>
<p class="text-center" style="opacity: 50%;">
Copyright © Phattharaphorn</p>
</footer>
</body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init();
AOS.init({
duration: 800,
});
</script>
</html>