-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
423 lines (399 loc) · 14.3 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
<!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" />
<!-- ===== META ===== -->
<meta
property="og:image"
content="https://www.mrthenatdev.ml/assets/img/logo.png"
/>
<meta property="og:title" content="Wahyne - Overview" />
<meta property="og:site_name" content="Jordan" />
<meta property="og:url" content="https://www.thenat.ml" />
<meta
property="og:description"
content="Full stack web. self-taught programming student
during my off hours."
/>
<meta name="theme-color" content="#ef8c34" />
<link rel="icon" type="image/png" href="assets/img/logo.png" />
<!-- ===== GOOGLE FONTS ===== -->
<!-- ===== POPPINS =====-->
<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:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<!-- ===== RIGHEOUS ===== -->
<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=Righteous&display=swap"
rel="stylesheet"
/>
<!-- ===== CSS ===== -->
<link rel="stylesheet" href="assets/css/styles.css" />
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" />
<!-- ===== JS ===== -->
<script src="assets/js/aos.js" defer></script>
<script src="assets/js/main.js" defer></script>
<script src="assets/js/navbar.js" defer></script>
<script src="assets/js/cookie.js" defer></script>
<script src="assets/js/btnscrolltop.js" defer></script>
<script src="assets/js/darkmode.js" defer></script>
<script src="assets/js/navlinkremoveactive.js" defer></script>
<!-- ===== PARTICLES ===== -->
<script src="assets/js-particles/particles.js" defer></script>
<script src="assets/js-particles/app.js" defer></script>
<!-- ===== BOXICONS =====-->
<link
href="https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css"
rel="stylesheet"
/>
<!-- ===== FONTAWESOME ===== -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css"
integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- ===== ANIMATION ===== -->
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://unpkg.com/typed.js@2.0.12/lib/typed.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.1/gsap.min.js"
integrity="sha512-Mf/xUqfWvDIr+1B6zfnIDIiG7XHzyP/guXUWgV6PgaQoIFeXkJQR5XWh9fqAiCiRCpemabt3naV4jhDWVnuYDQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<title>Wahyne - Portfolio</title>
</head>
<body>
<!-- ===== LOADING ===== -->
<div class="load">
<div class="load__center">
<div class="load__container">
<div class="load__box"></div>
<div class="load__box"></div>
<div class="load__box"></div>
<div class="load__box"></div>
</div>
</div>
</div>
<!-- ===== Particles ===== -->
<div id="particles-js"></div>
<!-- ===== Nav ===== -->
<header class="header js-header">
<div class="container">
<div class="logo">
<img
src="https://cdn.discordapp.com/attachments/1022258434353147936/1036792963709276220/26-Cowok-Tangan-Merah-sedang-Minum.jpg"
alt="" title="Wahyne"
/>
</div>
<nav class="nav__menu">
<ul class="nav__list">
<li class="nav__item">
<a href="#Home" class="nav__link active">
<i class="bx bx-home-alt-2"></i>
Home
</a>
</li>
<li class="nav__item">
<a href="#Skills" class="nav__link">
<i class="bx bx-stats"></i>
Skills
</a>
</li>
<li class="nav__item">
<a href="https://discord.gg/U4hNj5Ecuu" class="nav__link">
<i class="bx bx-user"></i>
Discord
</a>
</li>
<li class="nav__item">
<a href="#Contact" class="nav__link">
<i class="bx bx-folder"></i>
Contact
</a>
</li>
<li class="nav__item">
<a href="https://github.com/thenatdev/" class="nav__link">
<i class="fa-brands fa-github-alt"></i>
Github
</a>
</li>
<li class="nav__item">
<button class="nav__darkmode">
<i class="bx bx-moon"></i>
</button>
</li>
</ul>
</nav>
</div>
<div class="nav__humbger">
<div class="bar"></div>
</div>
</header>
<!-- ===== HOME ===== -->
<section class="section" id="Home">
<div class="home">
<div class="home__main">
<div class="home__data">
<h2>
<span>Hi,</span><br />
I am <span class="auto-type"></span>.
</h2>
<h3 class="gray mbg">FrontEnd & BackEnd Developer</h3>
<p>
I'm a digital product designer focusing on crafting user experiences
and design systems for software, web products. I'm passionate about
applying consumer psychology for an interaction science-backed
approach. I'm learning new programming languages and I'm still doing
everything to the fullest!
</p>
<div class="home__boxBtn">
<button
class="home__btn"
target="_bank"
onclick="window.location.href='mailto:jordan2offshel@hotmail.com'"
type="button"
>
Hire me
</button>
<button
class="home__btn"
target="_bank"
onclick="alert('Sorry this fucntion is not working')"
type="button"
>
Download CV
</button>
</div>
</div>
<div class="home__img">
<img
class="home__img-data"
src="https://cdn.discordapp.com/attachments/1022258434353147936/1036792963709276220/26-Cowok-Tangan-Merah-sedang-Minum.jpg"
alt=""
/>
</div>
</div>
</div>
</section>
<!-- ===== SKILLS ===== -->
<section class="section" id="Skills">
<h2 class="section__title">Skills</h2>
<div class="skills" data-aos="fade-down">
<h2 class="skills__title">Profesional</h2>
<div class="skills__container">
<div class="cardBox">
<div class="skills__grid">
<div class="skills__card">
<h2><i class="bx bxl-javascript"></i> Js</h2>
<div class="skills__data">
<div class="skills__bar skills__js"></div>
<p class="skills__pourcente yellow mbw750">70%</p>
</div>
</div>
<div class="skills__card">
<h2><i class="bx bxl-html5"></i> Html5</h2>
<div class="skills__data">
<div class="skills__bar skills__html5"></div>
<p class="skills__pourcente yellow mbw750">96%</p>
</div>
</div>
<div class="skills__card">
<h2><i class="bx bxl-css3"></i> Css3</h2>
<div class="skills__data">
<div class="skills__bar skills__css"></div>
<p class="skills__pourcente yellow mbw750">85%</p>
</div>
</div>
<div class="skills__card">
<h2><i class="bx bx-paint"></i> UX/UI</h2>
<div class="skills__data">
<div class="skills__bar skills__ux"></div>
<p class="skills__pourcente yellow mbw750">75%</p>
</div>
</div>
</div>
</div>
<div class="skills__img">
<img src="assets/img/img1.jpg" />
</div>
</div>
</div>
</section>
<!-- ===== CONTACT ===== -->
<section class="section" id="Contact">
<h2 class="section__title">Contact</h2>
<div class="contact" data-aos="fade-down">
<div class="contact__container">
<div class="contact__data">
<form method="post">
<div class="contact__label-box">
<input type="name" name="" id="name" required />
<label><i class="fa-solid fa-user"></i> Username</label>
</div>
<div class="contact__label-box">
<input type="email" name="" id="email" required />
<label><i class="fa-solid fa-at"></i> Email</label>
</div>
<textarea
name=""
id="message"
cols="50"
rows="5"
placeholder="Your message"
required
></textarea>
<input
type="submit"
id="submit"
value="Send"
onclick="SendMail(); reset(); return false;"
/>
</form>
</div>
</div>
</div>
</section>
<!-- ===== PROJETS ===== -->
<section class="section" id="projets">
<h2 class="section__title">
<i class="fa-solid fa-bars-progress"></i> Projets
</h2>
<div class="projets bd-grid">
<div class="projets__container">
<div class="projets__cardprojets">
<div class="projets__img-container">
<img class="projets__cardsimg" src="assets/img/img1.jpg" alt="" />
</div>
<div class="projets__data">
<h2>Slywinter(Old-projet)</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Molestias ipsam nobis eveniet?
</p>
</div>
<div class="projets__button-container">
<button class="projets__button">View projet</button>
</div>
</div>
<div class="projets__cardprojets">
<div class="projets__img-container">
<img class="projets__cardsimg" src="assets/img/img1.jpg" alt="" />
</div>
<div class="projets__data">
<h2>Celua</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Molestias ipsam nobis eveniet?
</p>
</div>
<div class="projets__button-container">
<button class="projets__button">View projet</button>
</div>
</div>
<div class="projets__cardprojets">
<div class="projets__img-container">
<img class="projets__cardsimg" src="assets/img/img1.jpg" alt="" />
</div>
<div class="projets__data">
<h2>Nuklaria</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Molestias ipsam nobis eveniet?
</p>
</div>
<div class="projets__button-container">
<button class="projets__button">View projet</button>
</div>
</div>
</div>
</div>
</section>
<!-- ===== FOOTER ===== -->
<footer class="footer">
<div class="footer__container">
<div class="footer__column">
<div class="footer__data">
<h2 class="yellow">Wahyne</h2>
<div class="footer__social">
<ul>
<li class="footer__item">
<a
href="http://github.com/Wahyne"
target="_bank"
class="footer__icon"
>
<i class="bx bxl-github"></i
></a>
</li>
<li class="footer__item">
<a
href="http://www.instagram.com/Wahyne.19"
target="_bank"
class="footer__icon"
>
<i class="bx bxl-instagram"></i
></a>
</li>
<li class="footer__item">
<a
href="https://discord.gg/U4hNj5Ecuu"
target="_bank"
class="footer__icon"
>
<i class="bx bxl-discord-alt"></i
></a>
</li>
<li class="footer__item">
<a
href="http://www.buymeacoffee.com/Wahyne"
target="_bank"
class="footer__icon"
><i class="bx bxs-coffee-togo"></i
></a>
</li>
</ul>
</div>
<p>2022 ©All right reserved, developed by Wahyne.</p>
</div>
</div>
</div>
</footer>
<!-- ===== COOKIE ===== -->
<div class="cookie active">
<div class="cookie__container">
<div class="cookie__img">
<img
src="https://cdn-icons-png.flaticon.com/512/1047/1047711.png"
alt=""
/>
</div>
<div class="cookie__details">
<p>
This website uses cookies <br />
to ensure you get the best <br />
experience on our website.
</p>
</div>
<div class="cookie__boxBtn">
<button class="cookie__btn btn-accept"></button>
<button class="cookie__btn btn-cancel"></button>
</div>
</div>
</div>
<!-- ==== BUTTON SCROLL TO TOP -->
<button class="btnScrollToTop" onclick="btnScrollToTop()">
<i class="bx bxs-chevron-up"></i>
</button>
<!-- ==== CODE CREATED BY Thenat ===== -->
</body>
</html>