-
Notifications
You must be signed in to change notification settings - Fork 0
/
code.html
612 lines (612 loc) · 27.8 KB
/
code.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
<!DOCTYPE html>
<html lang="en-US" dir="ltr">
<head>
<meta charset="utf-8" />
<!-- locate charset within the first 1024 document bytes -->
<!--========================================================
|* @code.html
|* $author: glmvc
|* $license: mit
|* $code-style-guide: /CONTRIBUTING.md
|*
|* @css
|* $fonts.css
|* $normalize.css v8.0.1
|* $prismjs v1.29.0
|* $prismjs vs code dark+ theme
|* $style.css
|* $noscript.css
|*
|* @scripts
|* $jquery v3.6.4
|* $prismjs v1.29.0
|* $main.js
|========================================================-->
<!-- @title -->
<title>Source Code - My Upgraded First Site</title>
<!-- @metadata -->
<meta name="description" content="Source code of the upgraded version of my first site!" />
<meta name="keywords" content="first, site, upgrade, upgraded, version, glmvc, source, code, sourcecode" />
<meta name="author" content="glmvc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#0fb55e" />
<meta name="msapplication-TileColor" content="#603cba" />
<meta
name="msapplication-TileImage"
content="https://glmvc.github.io/first-site-upgrade/favicons/code-mstile-144x144.png"
/>
<meta
name="msapplication-config"
content="https://glmvc.github.io/first-site-upgrade/favicons/code-browserconfig.xml"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://glmvc.github.io/first-site-upgrade/code.html" />
<meta name="twitter:title" content="Source Code - My Upgraded First Site" />
<meta name="twitter:description" content="Source code of the upgraded version of my first site!" />
<meta name="twitter:image" content="https://glmvc.github.io/first-site-upgrade/images/hello-world.png" />
<meta name="twitter:image:alt" content="A cartoon view of the earth saying hello and the moon" />
<meta name="twitter:site" content="@glmvc" />
<meta name="twitter:creator" content="@glmvc" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="en_US" />
<meta property="og:url" content="https://glmvc.github.io/first-site-upgrade/code.html" />
<meta property="og:title" content="Source Code - My Upgraded First Site" />
<meta property="og:description" content="Source code of the upgraded version of my first site!" />
<meta property="og:image" content="https://glmvc.github.io/first-site-upgrade/images/hello-world.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:alt" content="A cartoon view of the earth saying hello and the moon" />
<meta property="og:image:width" content="400" />
<meta property="og:image:height" content="300" />
<meta property="og:video" content="https://glmvc.github.io/first-site-upgrade/videos/hello-world.mp4" />
<meta property="og:video:type" content="video/mp4" />
<meta property="og:video:alt" content="A 'Hello world!' terminal output" />
<meta property="og:video:width" content="640" />
<meta property="og:video:height" content="360" />
<meta property="og:audio" content="https://glmvc.github.io/first-site-upgrade/audios/cyberpunk.mp3" />
<meta property="og:audio:type" content="audio/mpeg" />
<meta property="og:audio:alt" content="A cyberpunk soundtrack" />
<!-- @css -->
<!-- internal stylesheet (for demo purposes only) -->
<style>
* {
margin: 0;
padding: 0;
}
</style>
<link rel="stylesheet" href="styles/fonts.css" />
<link rel="stylesheet" href="styles/normalize.css" />
<link rel="stylesheet" href="styles/prism.min.css" />
<link rel="stylesheet" href="styles/prism-theme.min.css" />
<link rel="stylesheet" href="styles/style.css" />
<!-- @linking -->
<link rel="icon" href="favicons/code-favicon-32x32.png" sizes="32x32" type="image/png" />
<link rel="icon" href="favicons/code-favicon-16x16.png" sizes="16x16" type="image/png" />
<link rel="icon" href="favicons/code-favicon.ico" sizes="any" />
<link rel="icon" href="favicons/code-favicon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="favicons/code-apple-touch-icon.png" sizes="180x180" />
<link rel="mask-icon" href="favicons/code-safari-pinned-tab.svg" color="#0fb55e" />
<link rel="manifest" href="favicons/code-site.webmanifest" />
<!-- @scripts -->
<script src="scripts/jquery-3.6.4.min.js" defer></script>
<script src="scripts/prism.min.js" defer></script>
<script src="scripts/main.js" defer></script>
<noscript><link rel="stylesheet" href="styles/noscript.css" /></noscript>
</head>
<body class="js-preload" data-page="code">
<!--=====================================================-->
<!-- || page -->
<!--=====================================================-->
<div class="page-wrapper centered">
<!--=====================================================-->
<!-- || skip links (a11y) -->
<div class="skip-links box-shadow">
Skip to <a class="skip-link" href="#content-main">main content</a> or
<a class="skip-link" href="#footer-main">main footer</a>.
</div>
<!--=====================================================-->
<!-- || header -->
<header class="box-shadow">
<!-- || logo (svg) -->
<a class="logo" href="index.html" aria-label="Home">
<span class="visually-hidden">ivan glmvc</span>
<svg
xmlns="http://www.w3.org/2000/svg"
width="244"
height="265"
fill="none"
viewBox="0 0 244 265"
role="img"
aria-labelledby="svg-logo-title"
>
<title id="svg-logo-title">Logo with the letters "i" and "v" for the name "ivan"</title>
<path
fill="whitesmoke"
fill-rule="evenodd"
d="M53.8992 98.4712c5.7288-3.3137 13.0542-1.3472 16.3617 4.3928l71.8651 124.707c3.308 5.74 1.345 13.079-4.384 16.393-5.728 3.313-13.054 1.347-16.361-4.393L49.5151 114.864c-3.3075-5.74-1.3447-13.079 4.3841-16.3928ZM204.726 165.339c6.515 1.151 10.864 7.375 9.716 13.901l-7.973 45.302c-1.149 6.526-7.361 10.884-13.876 9.733-6.514-1.15-10.864-7.374-9.715-13.901l7.972-45.301c1.149-6.527 7.361-10.885 13.876-9.734Z"
clip-rule="evenodd"
/>
<path
fill="whitesmoke"
fill-rule="evenodd"
d="M119.968 235.655c-1.149-6.527 3.201-12.751 9.715-13.901l62.91-11.114c6.515-1.151 12.727 3.207 13.876 9.734 1.149 6.527-3.201 12.751-9.716 13.901l-62.91 11.114c-6.514 1.151-12.727-3.207-13.875-9.734Z"
clip-rule="evenodd"
/>
<path
class="logo-color-v"
fill="#0fb55e"
fill-rule="evenodd"
d="M234.1.184353c6.515 1.150837 10.865 7.374737 9.716 13.901447L223.017 132.263c-1.149 6.526-7.361 10.885-13.875 9.734-6.515-1.151-10.865-7.375-9.716-13.902L220.225 9.91827C221.373 3.39154 227.586-.966486 234.1.184353Zm-48.908 0c6.514 1.150837 10.864 7.374737 9.716 13.901447l-5.027 28.5595c-1.149 6.5267-7.361 10.8847-13.875 9.7339-6.515-1.1509-10.865-7.3748-9.716-13.9015l5.026-28.55943c1.149-6.52673 7.361-10.884756 13.876-9.733917Z"
clip-rule="evenodd"
/>
<path
class="logo-color-v"
fill="#0fb55e"
fill-rule="evenodd"
d="M171.134 12.002c0-6.62738 5.363-11.99996609 11.978-11.99996602l48.908 5.1e-7c6.615 7e-8 11.978 5.37258551 11.978 11.99996551 0 6.6275-5.363 12-11.978 12h-48.908c-6.615 0-11.978-5.3725-11.978-12Z"
clip-rule="evenodd"
/>
<path
fill="whitesmoke"
fill-rule="evenodd"
d="M53.8992 1.6097C59.6279-1.70401 66.9533.262492 70.2608 6.002L156.1 154.958c3.308 5.74 1.345 13.079-4.384 16.393-5.729 3.313-13.054 1.347-16.362-4.393L49.515 18.002c-3.3075-5.7395-1.3446-13.07859 4.3842-16.3923Z"
clip-rule="evenodd"
/>
<path
fill="whitesmoke"
fill-rule="evenodd"
d="M172.082 76.1507c6.515 1.1509 10.865 7.3748 9.716 13.9015l-12.479 70.9058c-1.149 6.527-7.361 10.885-13.876 9.734-6.515-1.151-10.864-7.374-9.716-13.901l12.48-70.9063c1.148-6.5268 7.361-10.8848 13.875-9.734Z"
clip-rule="evenodd"
/>
<path
fill="whitesmoke"
fill-rule="evenodd"
d="M133.932 163.042c-1.149-6.527 3.201-12.75 9.715-13.901l11.796-2.084c6.515-1.151 12.727 3.207 13.876 9.734 1.148 6.527-3.202 12.75-9.716 13.901l-11.796 2.084c-6.514 1.151-12.727-3.207-13.875-9.734Z"
clip-rule="evenodd"
/>
<path
class="logo-color-i"
fill="#7cb7ed"
fill-rule="evenodd"
d="M59.8879 192.002c6.6151 0 11.9776 5.373 11.9776 12v48c0 6.628-5.3625 12-11.9776 12-6.615 0-11.9775-5.372-11.9775-12v-48c0-6.627 5.3625-12 11.9775-12Zm-47.9103-72c6.615 0 11.9776 5.373 11.9776 12v120c0 6.627-5.3626 12-11.9776 12-6.61505 0-11.9776-5.373-11.9776-12v-120c0-6.627 5.36255-12 11.9776-12Z"
clip-rule="evenodd"
/>
<path
class="logo-color-i"
fill="#7cb7ed"
fill-rule="evenodd"
d="M0 252.002c0-6.627 5.36255-12 11.9776-12h47.9103c6.6151 0 11.9776 5.373 11.9776 12 0 6.628-5.3625 12-11.9776 12H11.9776c-6.61505 0-11.9776-5.373-11.9776-12Z"
clip-rule="evenodd"
/>
<path
fill="whitesmoke"
fill-rule="evenodd"
d="M59.8879.00209427c6.6151 0 11.9776 5.37258573 11.9776 12.00000573V156.002c0 6.628-5.3625 12-11.9776 12-6.615 0-11.9775-5.372-11.9775-12V12.0021c0-6.62742 5.3625-12.00000573 11.9775-12.00000573Zm-47.9103 0c6.615 0 11.9776 5.37258573 11.9776 12.00000573v72c0 6.6274-5.3626 12-11.9776 12-6.61505 0-11.9776-5.3726-11.9776-12v-72C0 5.37468 5.36255.00209427 11.9776.00209427Z"
clip-rule="evenodd"
/>
<path
fill="whitesmoke"
fill-rule="evenodd"
d="M0 12.0021C0 5.37468 5.36255.00209427 11.9776.00209427h47.9103c6.6151 0 11.9776 5.37258573 11.9776 12.00000573 0 6.6274-5.3625 12-11.9776 12H11.9776C5.36255 24.0021 0 18.6295 0 12.0021Z"
clip-rule="evenodd"
/>
</svg>
<!-- || typewriter effect -->
<span class="typewriter" aria-hidden="true">
<span class="js-typewriter-text"></span>
</span>
</a>
<!-- || navigation (nav) -->
<nav aria-label="Main">
<button
type="button"
id="js-nav-toggle-button"
class="nav-toggle-button"
aria-controls="nav-main"
aria-expanded="false"
>
<span class="visually-hidden">Open main navigation</span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</button>
<ul id="nav-main">
<li><a class="nav-item-home" href="index.html" title="Homepage">Home</a></li>
<li><a class="nav-item-code active" href="code.html" title="Source Code" aria-current="page">Code</a></li>
<li><a class="nav-item-changelog" href="changelog.html" title="Changelog List">Changelog</a></li>
<li>
<a
class="nav-item-first-site"
href="first-site/index.html"
title="first-site version (different structure and layout)"
rel="alternate"
>First-Site</a
>
</li>
</ul>
</nav>
</header>
<!--=====================================================-->
<!-- || main -->
<main id="content-main" class="wrapper line-numbers">
<!-- || noscript -->
<noscript class="drop-shadow">
Please <b class="user-instruction">enable JavaScript</b> in your (system/browser) settings to ensure that this
website runs properly.
</noscript>
<!-- || sidebar (aside) -->
<aside class="box-shadow drop-shadow">
<p>Visit my</p>
<ul aria-label="Social media profiles">
<li>
<a
href="https://github.com/glmvc"
title="glmvc GitHub profile"
target="_blank"
rel="external noopener noreferrer"
>🐙 GitHub</a
>
</li>
<li>
<a
href="https://twitter.com/glmvc"
title="glmvc Twitter profile"
target="_blank"
rel="external noopener noreferrer"
>🐦 Twitter</a
>
</li>
</ul>
</aside>
<!-- || greeting -->
<section class="section-greeting" aria-label="Personalized welcome message">
<h1><span class="heading-main">hello world!</span></h1>
<!-- inline styling (for demo purposes only) -->
<h2 style="color: whitesmoke; color: var(--on-surface-color-main)">
Nice to meet you, <bdi class="hyphenation" data-name></bdi>
</h2>
</section>
<!-- || code info -->
<section aria-label="Source Code Information">
<h3><span class="emoji">👾</span> Source Code Info</h3>
<p>
This code information displays the
<a
href="https://github.com/glmvc/first-site-upgrade"
title="first-site-upgrade GitHub repository"
target="_blank"
rel="external noopener noreferrer"
>source code</a
>
of the project's <em>main</em> files as code blocks/snippets. External tools, such as JavaScript libraries,
are <em>not</em> included. The
<a
href="https://github.com/glmvc/first-site"
title="first-site GitHub repository"
target="_blank"
rel="external noopener noreferrer"
>source code of the first-site</a
>
is also <em>not</em> listed, but can be found in its repository.
</p>
<p>
Always check the
<a
href="https://github.com/glmvc/first-site-upgrade/blob/main/LICENSE.md"
title="first-site-upgrade repository license"
target="_blank"
rel="license external noopener noreferrer"
>license of the project</a
>
before copying any code. To copy, you can either:
</p>
<ul>
<li>
<em>simply</em> copy the entire code of the desired block to your clipboard using the
<strong>"Copy" button</strong> in the upper right corner of each code block,
</li>
<li>
or you can <em>manually</em> select the desired lines/parts/words with your input device (usually a mouse)
and press <kbd><kbd>⌘ (Command/Cmd)</kbd> + <kbd>C</kbd></kbd> on Mac or
<kbd><kbd>Ctrl (Control)</kbd> + <kbd>C</kbd></kbd> on Windows/Linux.
</li>
<li>
To paste what you copied to the desired location, press
<kbd><kbd>⌘ (Command/Cmd)</kbd> + <kbd>V</kbd></kbd> on Mac or
<kbd><kbd>Ctrl (Control)</kbd> + <kbd>V</kbd></kbd> on Windows/Linux.
</li>
</ul>
</section>
<!-- || html code -->
<section aria-label="HTML Source Code">
<h4><span class="emoji"></></span> HTML Code</h4>
<!-- || index.html -->
<details>
<summary><h5>index.html</h5></summary>
<div class="details-inner">
<noscript class="drop-shadow">
Please <b class="user-instruction">enable JavaScript</b> in your (system/browser) settings to load and
display the source code.
</noscript>
<pre data-src="index.html"></pre>
</div>
</details>
<!-- || code.html -->
<details>
<summary><h5>code.html</h5></summary>
<div class="details-inner">
<noscript class="drop-shadow">
Please <b class="user-instruction">enable JavaScript</b> in your (system/browser) settings to load and
display the source code.
</noscript>
<pre data-src="code.html"></pre>
</div>
</details>
<!-- || changelog.html -->
<details>
<summary><h5>changelog.html</h5></summary>
<div class="details-inner">
<noscript class="drop-shadow">
Please <b class="user-instruction">enable JavaScript</b> in your (system/browser) settings to load and
display the source code.
</noscript>
<pre data-src="changelog.html"></pre>
</div>
</details>
<!-- || 404.html -->
<details>
<summary><h5>404.html</h5></summary>
<div class="details-inner">
<noscript class="drop-shadow">
Please <b class="user-instruction">enable JavaScript</b> in your (system/browser) settings to load and
display the source code.
</noscript>
<pre data-src="404.html"></pre>
</div>
</details>
</section>
<!-- || css code -->
<section aria-label="CSS Source Code">
<h4><span class="emoji">{}</span> CSS Code</h4>
<!-- || style.css -->
<details>
<summary><h5>style.css</h5></summary>
<div class="details-inner">
<noscript class="drop-shadow">
Please <b class="user-instruction">enable JavaScript</b> in your (system/browser) settings to load and
display the source code.
</noscript>
<pre data-src="styles/style.css"></pre>
</div>
</details>
<!-- || fonts.css -->
<details>
<summary><h5>fonts.css</h5></summary>
<div class="details-inner">
<noscript class="drop-shadow">
Please <b class="user-instruction">enable JavaScript</b> in your (system/browser) settings to load and
display the source code.
</noscript>
<pre data-src="styles/fonts.css"></pre>
</div>
</details>
<!-- || noscript.css -->
<details>
<summary><h5>noscript.css</h5></summary>
<div class="details-inner">
<noscript class="drop-shadow">
Please <b class="user-instruction">enable JavaScript</b> in your (system/browser) settings to load and
display the source code.
</noscript>
<pre data-src="styles/noscript.css"></pre>
</div>
</details>
</section>
<!-- || js code -->
<section aria-label="JavaScript Source Code">
<h4><span class="emoji">});</span> JS Code</h4>
<!-- || main.js -->
<details>
<summary><h5>main.js</h5></summary>
<div class="details-inner">
<noscript class="drop-shadow">
Please <b class="user-instruction">enable JavaScript</b> in your (system/browser) settings to load and
display the source code.
</noscript>
<pre data-src="scripts/main.js"></pre>
<p>
Note that the "first site visit check", which sets the <var>firstSiteVisit</var>
<strong>variable</strong> (let) to either true or false, is currently located within the birthday banner
functionality. If this check is needed for more functionalities/features in the future, it
<em>should</em> be moved to the "utility" section of the file.
</p>
</div>
</details>
</section>
<!-- || terminal code -->
<section aria-label="Terminal Source Code">
<h4><span class="emoji">$</span> Terminal</h4>
<pre
class="command-line no-line-numbers"
data-user="user"
data-host="local-machine"
data-output="2-5, 7-9, 11"
><code class="language-shell"><samp><kbd>ping glmvc.github.io</kbd>
PING glmvc.github.io (185.199.108.153): 56 data bytes
64 bytes from 185.199.108.153: icmp_seq=0 ttl=59 time=29.566 ms
64 bytes from 185.199.108.153: icmp_seq=1 ttl=59 time=20.409 ms
64 bytes from 185.199.108.153: icmp_seq=2 ttl=59 time=28.554 ms
<kbd>^C</kbd>
--- glmvc.github.io ping statistics ---
3 packets transmitted, 3 packets received, 0.0% packet loss
</samp>
<samp><kbd>whois 185.199.108.153</kbd>
...</samp></code></pre>
<small
>Quick Tip: To cancel pinging, press <kbd><kbd>Control/Ctrl</kbd> + <kbd>C</kbd></kbd
>, and the process will stop.</small
>
</section>
</main>
<!--=====================================================-->
<!-- || footer -->
<footer id="footer-main" class="wrapper">
<!-- || site features -->
<h4>Features</h4>
<h5>user interaction</h5>
<div class="features-wrapper">
<div class="feature">
<h6>Change your username:</h6>
<button type="button" id="js-change-username" class="button">Change user</button>
</div>
<div class="feature">
<h6>Enhance your coding senses:</h6>
<figure>
<audio id="audio" class="box-shadow" controls loop preload="auto">
<source src="audios/cyberpunk.ogg" type="audio/ogg; codecs=vorbis" />
<source src="audios/cyberpunk.mp3" type="audio/mpeg" />
<track kind="descriptions" src="audios/cyberpunk.vtt" srclang="en-US" label="English (US)" />
<p>
Sorry, your browser doesn't support HTML 5 audio. But don't worry, here's a
<a href="audios/cyberpunk.mp3" title="Cyberpunk soundtrack MP3 audio file" target="_blank"
>link to the MP3 audio file</a
>
instead. You can download it and listen to it with your favorite audio or media player!
</p>
</audio>
<figcaption>
A cyberpunk soundtrack (audio downloaded from
<a
href="https://pixabay.com/music/electronic-cyberpunk-2099-10701/"
title="Pixabay audio source"
target="_blank"
rel="external noopener noreferrer"
>Pixabay</a
>)
</figcaption>
</figure>
</div>
</div>
<hr />
<!-- || contact details (address) -->
<address>
<div class="contact-details">
<p>
secret company contact:<br />
secret street 1<br />
secret city<br />
secret country
</p>
<a href="tel:+1234567890">123-456-7890</a>
<a
href="mailto:[email protected][email protected],[email protected]&[email protected]&subject=***%20Secret%20Subject%20***&body=***%20Secret%20Message%20***"
>
</div>
<iframe
name="contact-map"
class="box-shadow"
width="400"
height="300"
src="https://www.openstreetmap.org/export/embed.html?bbox=-116.8620014190674%2C37.62317153081475%2C-116.83492183685304%2C37.63501637743219&layer=mapnik"
title="Secret location on OpenStreetMap"
loading="lazy"
></iframe>
</address>
<hr />
<!-- || info (details) -->
<details open>
<summary class="centered">Info</summary>
<div class="details-inner">
<p lang="ja">愛を込めて作成されました。</p>
<p>
The date of birth of the site is the
<time id="birthday" datetime="2021-12-06">6<sup>th</sup> of December 2021</time>.
</p>
<p>This site > first site and 1 < 2!</p>
<p>
Programmers usually love & need coffee <span class="emoji emoji-heart">❤</span>
<span class="emoji">☕</span> Brew yourself some
<data value="caffeine">C<sub>8</sub>H<sub>10</sub>N<sub>4</sub>O<sub>2</sub></data
>.
</p>
<p>The two words "<bdo dir="rtl">Hello World</bdo>" are "Hello World" spelled backward.</p>
<p>In this paragraph, <del>helo wrodl</del> <ins>Hello World</ins> is corrected.</p>
<p>Here, "<u class="incorrect-spelling">helo wrodl</u>" is spelled incorrectly.</p>
<p>
http://a<wbr />.super<wbr />.secret<wbr />.example<wbr />.info/located<wbr />/very<wbr />/deep<wbr />/within<wbr />/an<wbr />/extremely<wbr />/nested<wbr />/folder<wbr />/structure
</p>
<p>
<small
>Exploring web development to <math><mi>∞</mi></math></small
>
</p>
<p>
<ruby>またね<rp>(</rp><rt>ma-ta-ne</rt><rp>)</rp></ruby>
</p>
<p>
<small
>Last upgraded at
<time id="js-last-upgraded" datetime="2023-12-05T22:30">22:30 on December 5, 2023</time>.</small
>
</p>
</div>
</details>
</footer>
<!--=====================================================-->
<!-- || birthday banner (dialog) -->
<dialog id="birthday-banner" inert>
<canvas id="banner-confetti" width="762" height="518" aria-describedby="banner-confetti-description">
<span id="banner-confetti-description">Confetti shower to celebrate the Bitday</span>
</canvas>
<div class="dialog-inner">
<header>
<h2><span class="emoji">🎉</span> Bitday</h2>
<button
type="button"
class="js-close-dialog dialog-close-icon drop-shadow"
aria-label="Close dialog"
></button>
</header>
<section>
<hgroup>
<h3>Hooray! Today, the site turned <span class="js-site-age"></span> old!</h3>
<p>And it's been that long since the very first bit of it was written.</p>
</hgroup>
<p>
Cyber-cheers to all of you here today as the site blows out the digital candles on its birthday cake!
<span class="emoji">🎂</span> <span class="emoji">🍾</span>
</p>
</section>
<footer>
<menu>
<li>
<button type="button" class="js-close-dialog dialog-button box-shadow" autofocus>Close dialog</button>
</li>
<li>
<button
type="button"
class="js-celebrate-birthday dialog-button box-shadow"
aria-describedby="banner-confetti-description"
>
Celebrate with us <span class="emoji">🥳</span>
</button>
</li>
</menu>
</footer>
</div>
</dialog>
</div>
<!--=====================================================-->
<!-- || body script -->
<!--=====================================================-->
<script>
console.info("Hello, World!");
</script>
</body>
</html>