-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
667 lines (617 loc) Β· 24 KB
/
index.html
File metadata and controls
667 lines (617 loc) Β· 24 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Senior Technical Writer & Documentation Specialist</title>
<link rel="icon" href="/images/favicon.ico" type="image/x-icon">
<meta name="description" content="Oscar Rondon β Senior Technical Writer & Documentation Specialist, helping companies create user-friendly technical documentation.">
<link rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<!--The following script is for the darkmode/lighmode button-->
<script>
function toggleDarkMode() {
const body = document.body;
const icon = document.querySelector(".toggle-mode .icon");
body.classList.toggle("dark-mode");
// Update icon
if (body.classList.contains("dark-mode")) {
icon.classList.replace("fa-moon", "fa-sun");
} else {
icon.classList.replace("fa-sun", "fa-moon");
}
// Save to localStorage
const isDark = body.classList.contains("dark-mode");
localStorage.setItem("dark-mode", isDark);
}
// On page load, check localStorage
document.addEventListener("DOMContentLoaded", function () {
const isDark = localStorage.getItem("dark-mode") === "true";
if (isDark) {
document.body.classList.add("dark-mode");
// Change icon if needed
const icon = document.querySelector(".toggle-mode .icon");
if (icon) {
icon.classList.replace("fa-moon", "fa-sun");
}
}
});
//This last part is to fetch the header in other pages
function setupDarkModeToggle() {
const icon = document.querySelector(".toggle-mode .icon");
const toggleBtn = document.querySelector(".toggle-mode");
if (!toggleBtn) return;
toggleBtn.addEventListener("click", function () {
document.body.classList.toggle("dark-mode");
// Save to localStorage
const isDark = document.body.classList.contains("dark-mode");
localStorage.setItem("dark-mode", isDark);
// Update icon
if (icon) {
icon.classList.toggle("fa-sun");
icon.classList.toggle("fa-moon");
}
});
}
</script>
<!--The following link loads a library for the light/dark mode icons-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"/>
<style>
:root {
--bg-color: #fff;
--text-color: #111;
--card-bg: #f9f9f9;
--accent: #007bff;
}
body.dark-mode {
--bg-color: #080808;
--text-color: #fff;
--card-bg: #1a1a1a;
--accent: #66ccff;
}
#bg-canvas {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: -1;
background: var(--bg-color);
transition: background 0.3s;
pointer-events: none;
}
body {
margin: 0;
font-family: 'Poppins', sans-serif;
background: transparent;
color: var(--text-color);
transition: color 0.3s;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 10%;
position: sticky;
top: 0;
background: var(--bg-color);
z-index: 1000;
border-bottom: 1px solid #ccc;
}
nav .logo {
width: 100px;
}
.toggle-dark {
cursor: pointer;
background: none;
border: 1px solid var(--text-color);
padding: 0.4rem 1rem;
border-radius: 5px;
color: var(--text-color);
}
.hero {
text-align: center;
padding: 2rem 10%;
background: transparent;
}
.hero h1 span {
color: var(--accent);
}
.projects h2 {
text-align: center;
font-size: 2rem;
font-weight: 600;
margin-bottom: 2rem;
}
.project-grid {
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
justify-content: center;
}
.project-card {
background: var(--card-bg);
padding: 1.5rem;
border-radius: 10px;
width: 100%;
flex: 1 1 360px;
max-width: 360px;
text-align: center;
transition: transform 0.3s ease;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.project-card:hover {
transform: translateY(-5px);
}
.project-card a {
display: inline-block;
margin-top: 1rem;
color: var(--accent);
text-decoration: none;
font-weight: bold;
}
.skills {
padding: 3rem 10%;
text-align: center;
}
.skills-logos {
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
justify-content: center;
margin-top: 1.5rem;
}
.skills-logos div {
background: var(--card-bg);
padding: 0.8rem 1.2rem;
border-radius: 8px;
font-size: 14px;
}
footer {
text-align: center;
padding: 2rem 10%;
background: var(--card-bg);
margin-top: 3rem;
}
.social-icons a {
margin: 0 10px;
text-decoration: none;
color: var(--text-color);
}
</style>
</head>
<body>
<canvas id="bg-canvas"></canvas>
<nav>
<a href="/"><img src="images/Nuevo Logo Black.png" class="logo logo-light" alt="Logo">
<img src="images/Nuevo Logo White.png" class="logo logo-dark" alt="Logo"></a>
<ul>
<li class="dropdown">
<a href="#">Projects <span class="arrow">›</span></a>
<ul class="dropdown-content">
<li>
<a href="/projects/blogs/blogs.html" class="dropdown-link">
<img src="images/drop-down/Blog icon.png" class="dropdown-icon" alt="Blog Icon">
Blogs
</a>
</li>
<li>
<a href="/projects/user_guides/user_guides.html" class="dropdown-link">
<img src="images/drop-down/User Guide icon.png" class="dropdown-icon" alt="User Guide Icon">
User Guides
</a>
</li>
<li>
<a href="/projects/white_papers/white_papers.html" class="dropdown-link">
<img src="images/drop-down/White Paper icon.png" class="dropdown-icon" alt="White Paper Icon">
White Papers
</a>
</li>
<li>
<a href="/projects/content_strategy/content_strategy.html" class="dropdown-link">
<img src="images/drop-down/Content Strategy icon.png" class="dropdown-icon" alt="Content Strategy Icon">
Content Strategy
</a>
</li>
<li>
<a href="/projects/visuals/visuals.html" class="dropdown-link">
<img src="images/drop-down/Visuals icon.png" class="dropdown-icon" alt="Visuals Icon">
Visuals
</a>
</li>
</ul>
</li>
<li><a href="/api-documentation/">API Docs</a></li>
<li><a href="/about/about.html">About</a></li>
</ul>
<!--button class="toggle-dark" onclick="toggleDarkMode()">Toggle Mode</button-->
<button class="toggle-mode" onclick="toggleDarkMode()">
<i class="fas fa-moon icon"></i>
</button>
</nav>
<div class="hero">
<div class="text-block">
<p class="tagline">QA Engineer & Technical Writer</p>
<h1>Hi, I'm <span>Oscar</span><br></h1>
<p>I create impactful documentation for users, developers, and teams.</p>
</div>
<div class="hero-image">
<img src="images/hero_animation.svg" alt="Hero Animation">
</div>
</div>
<!--Feature Projects Section-->
<section class="projects" id="projects">
<h2>Featured <span class="highlight">Projects</span></h2>
<div class="projects-container">
<!-- LEFT: vertical tab list -->
<nav class="project-nav">
<button class="project-tab active" data-target="user-guide">
<img src="/images/feature projects/user-guide-icon.png" alt="" class="tab-icon">
User Guide
</button>
<button class="project-tab" data-target="technical-article">
<img src="/images/feature projects/technical-article-icon.png" alt="" class="tab-icon">
Technical Article
</button>
<button class="project-tab" data-target="workflow-diagrams">
<img src="/images/feature projects/workflow-diagrams-icon.png" alt="" class="tab-icon">
Workflow Diagram
</button>
<button class="project-tab" data-target="instructional-videos">
<img src="/images/feature projects/instructional-videos-icon.png" alt="" class="tab-icon">
Instructional Video
</button>
<button class="project-tab" data-target="white-papers">
<img src="/images/feature projects/white-papers-icon.png" alt="" class="tab-icon">
White Paper
</button>
</nav>
<!-- RIGHT: preview panels -->
<div class="project-content">
<!-- 1. User Guide (default) -->
<div class="project-preview" id="user-guide">
<div class="preview-header">
<div class="preview-info">
<h3>User Guide</h3>
<p>This is the description for the project, itβs not too short but also not too long.</p>
<div class="preview-tags">HTML, CSS, Markdown</div>
</div>
<a href="/projects/user_guides/user_guides.html" class="preview-link">
<div class="link-circle">
<span class="arrow-symbol">β</span>
</div>
</a>
</div>
<a href="/projects/user_guides/user_guides.html">
<img src="/images/feature projects/preview/user-guide.png"
alt="User Guide preview"
class="preview-image">
</a>
</div>
<!-- 2. Technical Article -->
<div class="project-preview hidden" id="technical-article">
<div class="preview-header">
<div class="preview-info">
<h3>Technical Article</h3>
<p>This is a short preview of my technical article. It highlights the key points in just two lines.</p>
<div class="preview-tags">Markdown, HTML, CSS</div>
</div>
<a href="/projects/blogs/blogs.html" class="preview-link">
<div class="link-circle">
<span class="arrow-symbol">β</span>
</div>
</a>
</div>
<a href="/projects/blogs/blogs.html">
<img src="/images/feature projects/preview/technical-article.png"
alt="Technical Article preview"
class="preview-image">
</a>
</div>
<!-- 3. Workflow Diagram -->
<div class="project-preview hidden" id="workflow-diagrams">
<div class="preview-header">
<div class="preview-info">
<h3>Workflow Diagram</h3>
<p>A glance at my workflow diagrams illustrating complex processes in a simple way.</p>
<div class="preview-tags">SVG, Mermaid</div>
</div>
<a href="/projects/visuals/visuals.html" class="preview-link">
<div class="link-circle">
<span class="arrow-symbol">β</span>
</div>
</a>
</div>
<a href="/projects/visuals/visuals.html">
<img src="/images/feature projects/preview/workflow-diagrams.png"
alt="Workflow Diagram preview"
class="preview-image">
</a>
</div>
<!-- 4. Instructional Video -->
<div class="project-preview hidden" id="instructional-videos">
<div class="preview-header">
<div class="preview-info">
<h3>Instructional Video</h3>
<p>A snippet from my instructional video seriesβconcise and to the point.</p>
<div class="preview-tags">YouTube, MP4</div>
</div>
<a href="/projects/content_strategy/content_strategy.html" class="preview-link">
<div class="link-circle">
<span class="arrow-symbol">β</span>
</div>
</a>
</div>
<a href="/projects/content_strategy/content_strategy.html">
<img src="/images/feature projects/preview/instructional-videos.png"
alt="Instructional Video preview"
class="preview-image">
</a>
</div>
<!-- 5. White Paper -->
<div class="project-preview hidden" id="white-papers">
<div class="preview-header">
<div class="preview-info">
<h3>White Paper</h3>
<p>Executive summary of my white paper, giving a high-level overview in two lines.</p>
<div class="preview-tags">PDF, LaTeX</div>
</div>
<a href="/projects/white_papers/white_papers.html" class="preview-link">
<div class="link-circle">
<span class="arrow-symbol">β</span>
</div>
</a>
</div>
<a href="/projects/white_papers/white_papers.html">
<img src="/images/feature projects/preview/white-papers.png"
alt="White Paper preview"
class="preview-image">
</a>
</div>
</div><!-- /.project-content -->
</div><!-- /.projects-container -->
</section>
<!--Tools and Skills Section-->
<section class="skills-strip">
<h2>Tech Stack</h2>
<div class="stack-container">
<!-- Docs & Writing -->
<div class="stack-group">
<h3>Docs & Writing</h3>
<div class="stack-items">
<a href="https://docusaurus.io" class="stack-item icon-skill" target="_blank">
<div class="icon-wrapper"><img src="/stack/tools/docusaurus_logo.png" alt="Docusaurus logo" /></div>
<span>Docusaurus</span>
</a>
<a href="https://www.markdownguide.org/" class="stack-item icon-skill" target="_blank">
<div class="icon-wrapper"><img src="/stack/tools/markdown_logo.png" alt="Markdown logo" /></div>
<span>Markdown</span>
</a>
<a href="https://swagger.io" class="stack-item icon-skill" target="_blank">
<div class="icon-wrapper"><img src="/stack/tools/swagger_logo.png" alt="Swagger logo" /></div>
<span>Swagger</span>
</a>
<a href="https://www.microsoft.com/en-us/microsoft-365" class="stack-item icon-skill" target="_blank">
<div class="icon-wrapper"><img src="/stack/tools/microsoft_365_logo.png" alt="Microsoft 365 logo" /></div>
<span>Microsoft 365</span>
</a>
<a href="https://www.canva.com" class="stack-item icon-skill" target="_blank">
<div class="icon-wrapper"><img src="/stack/tools/canva_logo.png" alt="Canva logo" /></div>
<span>Canva</span>
</a>
</div>
</div>
<!-- Dev Tools -->
<div class="stack-group">
<h3>Dev Tools</h3>
<div class="stack-items">
<a href="https://git-scm.com/" class="stack-item icon-skill" target="_blank">
<div class="icon-wrapper"><img src="/stack/tools/git_logo.png" alt="Git logo" /></div>
<span>Git</span>
</a>
<a href="https://github.com" class="stack-item icon-skill" target="_blank">
<div class="icon-wrapper"><img src="/stack/tools/github_logo.png" alt="GitHub logo" /></div>
<span>GitHub</span>
</a>
<a href="https://www.postman.com/" class="stack-item icon-skill" target="_blank">
<div class="icon-wrapper"><img src="/stack/tools/postman_logo.png" alt="Postman logo" /></div>
<span>Postman</span>
</a>
<a href="https://www.python.org" class="stack-item icon-skill" target="_blank">
<div class="icon-wrapper"><img src="/stack/tools/python_logo.png" alt="Python logo" /></div>
<span>Python</span>
</a>
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" class="stack-item icon-skill" target="_blank">
<div class="icon-wrapper"><img src="/stack/tools/javascript_logo.png" alt="JavaScript logo" /></div>
<span>Javascript</span>
</a>
</div>
</div>
<!-- Platforms -->
<div class="stack-group">
<h3>Platforms</h3>
<div class="stack-items">
<a href="https://www.atlassian.com/software/confluence" class="stack-item icon-skill" target="_blank">
<div class="icon-wrapper"><img src="/stack/tools/confluence_logo.png" alt="Confluence logo" /></div>
<span>Confluence</span>
</a>
<a href="https://www.atlassian.com/software/jira" class="stack-item icon-skill" target="_blank">
<div class="icon-wrapper"><img src="/stack/tools/jira_logo.png" alt="Jira logo" /></div>
<span>Jira</span>
</a>
<a href="https://openai.com" class="stack-item icon-skill" target="_blank">
<div class="icon-wrapper"><img src="/stack/tools/open_ai_logo.png" alt="OpenAI logo" /></div>
<span>Open AI</span>
</a>
<a href="https://www.notion.so/" class="stack-item icon-skill" target="_blank">
<div class="icon-wrapper"><img src="/stack/tools/notion_logo.png" alt="Notion logo" /></div>
<span>Notion</span>
</a>
<a href="https://moodle.org/" class="stack-item icon-skill" target="_blank">
<div class="icon-wrapper"><img src="/stack/tools/moodle_logo.png" alt="Moodle logo" /></div>
<span>Moodle</span>
</a>
</div>
</div>
</div>
</section>
<!-- Why Me Section-->
<section class="why-me">
<h2>Why Me?</h2>
<div class="why-me-wrapper">
<!-- Left Column -->
<div class="why-me-left">
<h3>Added Value</h3>
<ul class="why-list">
<li>
<img src="images/checkmark-svg.svg" alt="Checkmark Icon" class="check-icon">
Proactively report bugs during documentation updates
</li>
<li>
<img src="images/checkmark-svg.svg" alt="Checkmark Icon" class="check-icon">
Identify usability gaps through technical analysis
</li>
<li>
<img src="images/checkmark-svg.svg" alt="Checkmark Icon" class="check-icon">
Improve workflows with agile, cross-team collaboration
</li>
</ul>
</div>
<!-- Vertical Divider -->
<!--<div class="why-me-divider"></div>-->
<!-- Right Column (Carousel) -->
<div class="why-me-right">
<div class="carousel">
<div class="carousel-slide active">
<h3>π’ Companies</h3>
<div class="company-icons">
<a href="https://www.thalesgroup.com/en" target="_blank" class="company-item">
<img src="images/carousel/companies/Carousel_Thales_Group.png" alt="Thales Group">
<p>Thales Group</p>
</a>
<a href="https://amaris.com/" target="_blank" class="company-item">
<img src="images/carousel/companies/Carousel_Amaris_Consulting.png" alt="Amaris Consulting">
<p>Amaris Consulting</p>
</a>
<a href="https://aws.amazon.com/" target="_blank" class="company-item">
<img src="images/carousel/companies/Carousel_Amazon.png" alt="Amazon Web Services">
<p>Amazon Web Services</p>
</a>
<a href="https://www.upwork.com/" target="_blank" class="company-item">
<img src="images/carousel/companies/Carousel_Upwork.png" alt="Upwork">
<p>Upwork</p>
</a>
<a href="https://www.zters.com/" target="_blank" class="company-item">
<img src="images/carousel/companies/Carousel_Zters.png" alt="Zters">
<p>Zters</p>
</a>
</div>
</div>
<div class="carousel-slide">
<h3>π Education</h3>
<div class="company-icons education-icons"> <!-- π Add this class -->
<a href="https://www.datacamp.com/" target="_blank" class="company-item">
<img src="images/carousel/education/Carousel_Datacamp.png" alt="Datacamp">
<p>Datacamp</p>
</a>
<a href="https://grow.google/" target="_blank" class="company-item">
<img src="images/carousel/education/Carousel_Google.png" alt="Google">
<p>Google</p>
</a>
<a href="https://uis.edu.co/" target="_blank" class="company-item">
<img src="images/carousel/education/Carousel_UIS.png" alt="UIS">
<p>UIS</p>
</a>
<a href="https://uniandes.edu.co/" target="_blank" class="company-item">
<img src="images/carousel/education/Carousel_Uniandes.png" alt="Uniandes" class="uniandes-logo">
<p>Uniandes</p>
</a>
</div>
</div>
<div class="carousel-slide">
<h3>π
Awards</h3>
<div class="company-icons awards-icons"> <!-- π Add this class -->
<a href="https://www.upwork.com/" target="_blank" class="company-item">
<img src="images/carousel/awards/Carousel_100_Job_Success.png" alt="100% Job Success">
<p>100% Job Success</p>
</a>
<a href="https://www.upwork.com/" target="_blank" class="company-item">
<img src="images/carousel/awards/Carousel_Top_Rated.png" alt="Top Rated">
<p>Top Rated</p>
</a>
</div>
</div>
</div>
<div class="carousel-dots">
<span class="dot active" onclick="changeSlide(0)"></span>
<span class="dot" onclick="changeSlide(1)"></span>
<span class="dot" onclick="changeSlide(2)"></span>
</div>
</div>
</div>
</section>
<!-- Footer Section-->
<footer class="footer">
<div class="social-icons">
<a href="https://github.com/Osaron" target="_blank" class="icon-item">
<img src="images/icons/Github Logo Black.png" alt="GitHub" class="social-icon logo-light">
<img src="images/icons/Github Logo White.png" alt="GitHub" class="social-icon logo-dark">
<span>GitHub</span>
</a>
<a href="https://www.linkedin.com/in/oscar-andres-rondon/" target="_blank" class="icon-item">
<img src="images/icons/LinkedIn Logo.png" alt="LinkedIn" class="social-icon">
<span>LinkedIn</span>
</a>
<a href="https://www.upwork.com/freelancers/~019e375d8a6d276a88" target="_blank" class="icon-item">
<img src="images/icons/Upwork Logo.png" alt="Upwork" class="social-icon">
<span>Upwork</span>
</a>
</div>
<hr style="width: 60%; margin: 1rem auto 0.5rem; border: 0; border-top: 1px solid #ccc;">
<div class="contact-line">
<p>Get in touch at</p>
<p>
<a href="mailto:o.rondon@uniandes.edu.co">o.rondon@uniandes.edu.co</a>
</p>
</div>
<p class="copyright">Β© 2025 Oscar Rondon. All rights reserved.</p>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="particles.js"></script>
</body>
<!-- Carousel Section JS-->
<script>
let currentSlide = 0;
const slides = document.querySelectorAll('.carousel-slide');
const dots = document.querySelectorAll('.dot');
function changeSlide(index) {
slides.forEach((slide, i) => {
slide.classList.toggle('active', i === index);
dots[i].classList.toggle('active', i === index);
});
currentSlide = index;
}
// Auto-advance every 2 seconds
setInterval(() => {
const nextSlide = (currentSlide + 1) % slides.length;
changeSlide(nextSlide);
}, 6000); // 6000ms = 6 seconds
</script>
<!-- Featured Projects Section JS-->
<script>
document.querySelectorAll('.project-tab').forEach(btn => {
btn.addEventListener('click', () => {
// deactivate old
document.querySelector('.project-tab.active').classList.remove('active');
document.querySelector('.project-preview:not(.hidden)')
.classList.add('hidden');
// activate the one you clicked
btn.classList.add('active');
document.getElementById(btn.dataset.target)
.classList.remove('hidden');
});
});
</script>
</html>