-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
573 lines (499 loc) · 21 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
<!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" />
<!--=============== Remixicons ===============-->
<link
href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css"
rel="stylesheet"
/>
<!--=============== Swiper Css ===============-->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css"
/>
<!--=============== Css ===============-->
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="stylesheet" href="assets/css/skins/color-1.css" />
<!--=============== Skin Colors ===============-->
<link
rel="stylesheet"
href="assets/css/skins/color-1.css"
class="alternate-style"
title="color-1"
disabled
/>
<link
rel="stylesheet"
href="assets/css/skins/color-2.css"
class="alternate-style"
title="color-2"
disabled
/>
<title>Portfolio Website</title>
</head>
<body>
<!--=============== Header ===============-->
<header class="header" id="header">
<nav class="nav container">
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li>
<a href="#home" class="nav__link active-link">Hello</a>
</li>
<li>
<a href="#services" class="nav__link">Technologies</a>
</li>
<li>
<a href="#resumen" class="nav__link">Resumen</a>
</li>
<li>
<a href="#contact" class="nav__link">Contact</a>
</li>
</ul>
<div class="nav__close" id="nav-close">
<i class="ri-close-fill"></i>
</div>
</div>
<div class="nav__toggle" id="nav-toggle">
<i class="ri-menu-fill"></i>
</div>
</nav>
</header>
<!--=============== Main ===============-->
<main class="main">
<!--=============== Home ===============-->
<section class="home" id="home">
<div class="home__container container grid">
<img src="assets/img/profile4.png" alt="" class="home__img">
<div class="home__data">
<h1 class="home__name">Johany Navarro_</h1>
<p class="home__work">Power Platform Dev / IT Support</p>
<dl class="home__list">
<dt>AGE:</dt>
<dd>36</dd>
<dt>PHONE:</dt>
<dd>+1 (782) 774-7407</dd>
<dt>EMAIL:</dt>
<dd>johany87@gmail.com</dd>
<dt>ADDRESS:</dt>
<dd>Halifax, NS, Canada</dd>
</dl>
<div class="home__socials">
<a href="https://github.com/johany87" target="_blank" class="home__social-link">
<i class="ri-github-fill"></i>
</a>
<a href="https://www.linkedin.com/in/johany-navarro/" target="_blank" class="home__social-link">
<i class="ri-linkedin-box-fill"></i>
</a>
<a href="https://www.facebook.com/JohanyNavarro" target="_blank" class="home__social-link">
<i class="ri-facebook-circle-fill"></i>
</a>
</div>
</div>
</div>
</section>
<!--=============== Hello ===============-->
<section class="hello section container">
<h2 class="section__litle">Hey there! 👋</h2>
<p class="hello__details text-lg">
I’m your go-to person for all things Power Platform and IT support. I thrive on creating smart solutions with Power Platform to elevate your business. As a warm and helpful team member, I’m always eager to learn and collaborate.
Passionate about technology and innovation, I find joy in connecting with people, exploring new places, savoring delicious food, and indulging in a good cup of coffee 🍵. Let’s chat about how I can bring my tech passion and friendly vibe to enhance your digital journey! 🚀✨
</p>
<a href="assets/img/John-Cv.pdf" class="button button__flex text-sm">
<i class="ri-download-line"></i> DOWNLOAD CV
</a>
</section>
<!--=============== Services ===============-->
<section class="services section container" id="services">
<h2 class="section__title">Technologies I work with_</h2>
<div class="services__container grid">
<div class="services__item">
<div class="icon__box">
<img
src="assets/img/PowerApps1.png"
alt=""
class="services__icon"
/>
<div class="services__dot">
<span class="dot"></span>
</div>
</div>
<h3 class="servics__title text-lg">Power Apps</h3>
<p class="services__detail">A suite of cloud-based services and to create any business app in days or weeks thanks to low-code technologies</p>
</div>
<div class="services__item">
<div class="icon__box">
<img
src="assets/img/unnamed.png"
alt=""
class="services__icon"
/>
<div class="services__dot">
<span class="dot"></span>
</div>
</div>
<h3 class="servics__title text-lg">Power Automate</h3>
<p class="services__detail">Automate repetitive and mundane tasks on desktop apps, and websites with AI and digital and robotic process automation.</p>
</div>
<div class="services__item">
<div class="icon__box">
<img
src="assets/img/poweebi.png"
alt=""
class="services__icon"
/>
<div class="services__dot">
<span class="dot"></span>
</div>
</div>
<h3 class="servics__title text-lg">Power BI</h3>
<p class="services__detail">Turn your data into visuals with advanced data-analysis tools, AI capabilities, and a user-friendly report-creation tool.</p>
</div>
<div class="services__item">
<div class="icon__box">
<img
src="assets/img/SharePoint.png"
alt=""
class="services__icon"
/>
<div class="services__dot">
<span class="dot"></span>
</div>
</div>
<h3 class="servics__title text-lg">Sharepoint</h3>
<p class="services__detail">It helps organizations share content, knowledge, and applications to empower teamwork, and seamlessly collaborate.</p>
</div>
<div class="services__item">
<div class="icon__box">
<img
src="assets/img/entraid.png"
alt=""
class="services__icon"
/>
<div class="services__dot">
<span class="dot"></span>
</div>
</div>
<h3 class="servics__title text-lg">Entra ID</h3>
<p class="services__detail">An identity and access management solution that helps organizations secure and manage identities for hybrid and multi-cloud environments.</p>
</div>
<div class="services__item">
<div class="icon__box">
<img
src="assets/img/microsof365.png"
alt=""
class="services__icon"
/>
<div class="services__dot">
<span class="dot"></span>
</div>
</div>
<h3 class="servics__title text-lg">Microsoft 365 Admin</h3>
<p class="services__detail">Extensive cloud-based services to help your organization’s need for robust security, reliability, and user productivity.</p>
</div>
<div class="services__item">
<div class="icon__box">
<img
src="assets/img/windows_os.png"
alt=""
class="services__icon"
/>
<div class="services__dot">
<span class="dot"></span>
</div>
</div>
<h3 class="servics__title text-lg">Windows OS</h3>
<p class="services__detail">Unlock your end-user productivity and creativity with Windows 10/11 and administrate your IT Infrastructure with WIndows Server.</p>
</div>
<div class="services__item">
<div class="icon__box">
<img
src="assets/img/uipath.png"
alt=""
class="services__icon"
/>
<div class="services__dot">
<span class="dot"></span>
</div>
</div>
<h3 class="servics__title text-lg">UiPath</h3>
<p class="services__detail">Is a robotic process automation tool for large-scale end-to-end automation. For an accelerated business change.</p>
</div>
</div>
</section>
<!--=============== Resume ===============-->
<section class="section container" id="resumen">
<h2 class="section__title">Resume_</h2>
<div class="resume__container grid">
<div class="resume_data">
<h3 class="resume__title text-sm">EDUCATION</h3>
<div class="resume__item">
<h3 class="resume__subtitle text-sm">Microsoft</h3>
<p class="resume__date text-sm">2023</p>
<p class="resume__description text-lg">Create automated processes by using Power Automate</p>
</div>
<div class="resume__item">
<h3 class="resume__subtitle text-sm">Corporación Universitaria de Ciencia y Desarrollo</h3>
<p class="resume__date text-sm">2010 - 2014</p>
<p class="resume__description text-lg">Computer Engineer, Computer Engineering</p>
</div>
<div class="resume__item">
<h3 class="resume__subtitle text-sm">Instituto Tecnico Imtel</h3>
<p class="resume__date text-sm">2004 - 2006</p>
<p class="resume__description text-lg">It and Computing Techinician, Computer and Information Sciences and Support Services</p>
</div>
</div>
<div class="resume_data">
<h3 class="resume__title text-sm">EMPLOYMENT</h3>
<div class="resume__item">
<h3 class="resume__subtitle text-sm">
Professional Freelancer
</h3>
<p class="resume__date text-sm">May 2023 - Present</p>
<p class="resume__description text-lg">JNA Cloud Development · Freelance</p>
</div>
<div class="resume__item">
<h3 class="resume__subtitle text-sm">
RSM MT
</h3>
<p class="resume__date text-sm">Jan 2022 - May 2023 - 1 yr 5 mos</p>
<p class="resume__description text-lg">It Officer</p>
</div>
<div class="resume__item">
<h3 class="resume__subtitle text-sm">
RSM MT
</h3>
<p class="resume__date text-sm">Jan 2020 - Jan 2022 - 2 yr 1 mos</p>
<p class="resume__description text-lg">It Juniior Officer</p>
</div>
</div>
</div>
</section>
<!--=============== Skills ===============-->
<section class="section container">
<h2 class="section__title">Skills_</h2>
<div class="skills__container grid">
<div class="skills__content">
<h3 class="skills__title text-sm">IT SUPPORT</h3>
<div class="skills__list grid">
<div class="skills__data">
<div class="skills__titles">
<p class="skills__name text-sm">Create and support applications on the Microsoft Power Platform</p>
<span class="skills__number text-sm">92%</span>
</div>
<div class="skills__bar">
<span class="skills__percentage" style="width: 92%"></span>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<p class="skills__name text-sm">Windows installations and/or updates and hardware replacements</p>
<span class="skills__number text-sm">90%</span>
</div>
<div class="skills__bar">
<span class="skills__percentage" style="width: 90%"></span>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<p class="skills__name text-sm">Support Active Directory and Microsoft 365 Services</p>
<span class="skills__number text-sm">85%</span>
</div>
<div class="skills__bar">
<span class="skills__percentage" style="width: 85%"></span>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<p class="skills__name text-sm">Robotic Desktop Automation (RPA)</p>
<span class="skills__number text-sm">85%</span>
</div>
<div class="skills__bar">
<span class="skills__percentage" style="width: 85%"></span>
</div>
</div>
</div>
</div>
<div class="skills__content">
<h3 class="skills__title text-sm">FRONTEND</h3>
<div class="skills__list grid">
<div class="skills__data">
<div class="skills__titles">
<p class="skills__name text-sm">HTML</p>
<span class="skills__number text-sm">60%</span>
</div>
<div class="skills__bar">
<span class="skills__percentage" style="width: 60%"></span>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<p class="skills__name text-sm">CSS</p>
<span class="skills__number text-sm">60%</span>
</div>
<div class="skills__bar">
<span class="skills__percentage" style="width: 60%"></span>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<p class="skills__name text-sm">Bootstrap</p>
<span class="skills__number text-sm">60%</span>
</div>
<div class="skills__bar">
<span class="skills__percentage" style="width: 60%"></span>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<p class="skills__name text-sm">Python for RPA</p>
<span class="skills__number text-sm">40%</span>
</div>
<div class="skills__bar">
<span class="skills__percentage" style="width: 40%"></span>
</div>
</div>
</div>
</div>
</div>
</section>
<!--=============== My roles ===============-->
<section class="services section container" id="services">
<h2 class="section__title">Roles_</h2>
<div class="services__container services__container__roles grid">
<div class="services__item">
<div class="icon__box">
<img
src="assets/img/computer.png"
alt=""
class="services__icon services__icon__img"
/>
<div class="services__dot">
<span class="dot"></span>
</div>
</div>
<h3 class="servics__title text-lg">IT Support</h3>
<p class="services__detail">Deliver top-notch and effective solutions to end-users, demonstrating a deep understanding of IT systems, coupled with a proactive and customer-centric approach. Significant experience with Microsoft technologies like Windows 10/11 and Windows Server</p>
</div>
<div class="services__item">
<div class="icon__box">
<img
src="assets/img/coding.png"
alt=""
class="services__icon services__icon__img"
/>
<div class="services__dot">
<span class="dot"></span>
</div>
</div>
<h3 class="servics__title text-lg">Power Platform Developer</h3>
<p class="services__detail">Create any business application, automate repetitive and mundane tasks including legacy apps and Excel, and design dashboards to make better decisions, implement ChatBots for a better communication with clients.</p>
</div>
</div>
</section>
<!--=============== Contact ===============-->
<section class="contact section" id="contact">
<div class="contact__content container">
<h2 class="section__title">Get in touch_</h2>
<div class="contact__container grid">
<div class="contact__info">
<dl class="contact__list">
<dt>Phone:</dt>
<dd>+1 (782) 774-7407</dd>
<dt>Skype:</dt>
<dd>johany87</dd>
<dt>Email:</dt>
<dd>johany87@gmail.com</dd>
</dl>
<ul class="contact__socials">
<li>
<a href="https://www.facebook.com/JohanyNavarro"
class="href contact__social-link"
>Facebook</a>
</li>
<li>
<a href="https://www.linkedin.com/in/johany-navarro/"
class="href contact__social-link"
>Linkedin</a>
</li>
<li>
<a href="https://github.com/johany87"
class="href contact__social-link"
>Github</a>
</li>
</ul>
</div>
<div class="contact__form">
<div class="contact__form-title">Or just write me a letter here_</div>
<form action="" id="contact-form">
<div class="contact__input-div">
<input
type="text"
placeholder="Your Name"
class="contact__input"
id="contact-name"
/>
</div>
<div class="contact__input-div">
<input
type="email"
placeholder="Your Email"
class="contact__input"
id="contact-email"
/>
</div>
<div class="contact__input-div">
<textarea
placeholder="Type the Message hre"
class="contact__input textarea"
id="message"
cols="30"
rows="10"
></textarea>
</div>
<p class="contact__messaga text-sm"
id="contact-message">
Message
</p>
<button type="submit" class="button contact__button"">
SEND
</button>
</form>
<p class="footer__copy">
© 2024 <a href="https://beacons.ai/diegugutierrez" >DieguGutiérrez.</a> All Rihts Reserved
</p>
</div>
</div>
</div>
</section>
</main>
<!--=============== Style Switcher ===============-->
<div class="style__switcher">
<div class="style__switcher-toggler">
<i class="ri-settings-4-fill"></i>
</div>
<div class="colors">
<span class="color-1" onclick="setActiveStyle
('color-1')"></span>
<span class="color-2" onclick="setActiveStyle
('color-2')"></span>
</div>
</div>
<!--=============== Mixitup ===============-->
<script src="assets/js/mixitup.min.js"></script>
<!--=============== Swiper Js ===============-->
<script src="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.js"></script>
<!--=============== Email Js ===============-->
<script
type="text/javascript"
src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js"
></script>
<!--=============== Js ===============-->
<script src="assets/js/main.js"></script>
<!--=============== Common ===============-->
<script src="assets/js/common.js"></script>
</body>
</html>