-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
888 lines (807 loc) · 41.1 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
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
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
<!DOCTYPE html>
<!-- Creative Commons BY-NC 4.0 -->
<html lang="en" data-theme="light">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- favicon stuff -->
<link rel="
icon" href="/favicon.ico">
<link rel="icon" sizes="192x192" href="/favicon.ico">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="/favicon.ico" type="image/x-icon">
<!-- METAs -->
<div>
<!-- bing search tool -->
<meta name="msvalidate.01" content="3BE9CFA6584B778561D3B688CF00AF35">
<!--others-->
<meta name="description" content="MrT's Website">
<meta name=" author" content="MrT">
<link rel="license" href="/LICENSE.html">
<!-- METAs Open Graph -->
<div>
<meta property="og:title" content="MrT's Homepage">
<meta property="og:description" content="MrT(who likes coding)'s home page">
<meta property="og:image" content="https://MrT-tak.github.io/backgrand.jpg">
<meta property="og:url" content="https://mrt-tak.github.io">
<meta property="og:site_name" content="MrT's Homepage">
<meta property="og:type" content="profile">
<meta property="og:profile:username" content="MrT">
<meta property="og:profile:gender" content="male">
<meta property="og:image:alt" content="banner">
</div>
<!-- METAs Twitter -->
<div>
<meta name="twitter:card" content="">
<meta name="twitter:site" content="MrT-tak.github.io">
<meta name="twitter:creator" content="MrT">
<meta name="twitter:title" content="MrT's Homepage">
<meta name="twitter:description" content="MrT(who likes coding)'s home page">
<meta name="twitter:image" content="https://MrT-tak.github.io/backgrand.jpg">
</div>
<!-- METAs Google -->
<div>
<meta itemprop="name" content="MrT's Homepage">
<meta itemprop="description" content="MrT(who likes coding)'s home page">
<meta itemprop="image" content="https://MrT-tak.github.io/backgrand.jpg">
<!-- meta name="generator" content="Hugo 0.98.0"> in the album template. this is almost all hand crafted -->
</div>
<title>MrT730 HP</title>
</div>
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz"
crossorigin="anonymous"></script>
<!-- slide bar css -->
<link rel="stylesheet" href="/slideBarStyle.css">
<!-- global css -->
<link rel="stylesheet" href="/global.css">
<script src="/global.js" modular=""></script>
<!-- unloader -->
<link rel="stylesheet" href="/unloader.css">
<script src="/unloader.js"></script>
<script src="/scroll-sys.js" defer=""></script>
<script src="/colorVariable.js"></script>
<link rel="stylesheet" href="/externallinkmark.css">
<link rel="stylesheet" href="/navLinkCopyStyle.css" defer="">
<script defer="" src="/navLinkCopyScript.js"></script>
<link rel="stylesheet" href="./font.css" media="all" onload="if(media!=='all')media='all'"><!-- font -->
<style>
main {
padding-top: 1px;
}
</style>
</head>
<body data-new-gr-c-s-check-loaded="14.1056.0" data-gr-ext-installed="" data-gr-ext-disabled="forever">
<header class="sticky-top">
<!-- header -->
<nav class="navbar navbar-dark navbargreen shadow-sm">
<nav class="container">
<a href="/" class="navbar-brand d-flex align-items-center">
<img crossorigin="anonymous" referrerpolicy="no-referrer"
src="https://avatars.githubusercontent.com/u/95097999?v=4" alt="MrT's profile logo" id="MrTsavater"
width="50cm" loading="eager" fetchpriority="high">
<strong>MrT's Homepage</strong>
</a>
<button class="navbar-toggler collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#navbarHeader"
aria-controls="navbarHeader" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</nav>
</nav>
<!--header menu-->
<div class="collapse head-menu" id="navbarHeader">
<div class="container">
<div class="row">
<div class="col-sm-8 col-md-7 py-4">
<h4 class="text-white">About</h4>
<p class="text-white">Hi I am MrT formally known as MrT730. I like to code and play games.
I was born in fukuoka prefecture in Japan. my mother is from fukuoka but my father is from nagoya
prefecture.
<br>
<img crossorigin="anonymous" referrerpolicy="no-referrer" alt="GitHub commit(aka update) on main activity"
src="https://img.shields.io/github/commit-activity/m/MrT-tak/MrT-tak.github.io?color=brightgreen&label=updated"
loading="lazy" fetchpriority="low">
</p>
</div>
<div class="col-sm-4 offset-md-1 py-4">
<h4 class="text-white">Contact</h4>
<ul class="list-unstyled">
<li><!--<a href="https://github.com/MrT-tak/"-->
<button class="btn bggreen text-white">
<a href="https://github.com/MrT-tak/" class="text-white externalLinkHighlight">GITHUB</a>
</button>
</li>
<br>
<li>
<button class="btn bggreen text-white" id="mailMe">
<a href="mailto:MrT-tak@outlook.com" class="text-white">Email me</a>
</button>
</li>
</ul>
</div>
<div class="col-sm-4 offset-md-1 py-4">
<h4 class="text-white">RSS</h4>
<a href="/RSS/index.html">
<button class="btn btn-primary bggreen text-white">
<img crossorigin="anonymous" referrerpolicy="no-referrer" height="9cm"
src="https://cdn-icons-png.flaticon.com/512/2504/2504935.png"
alt="RSS icon(orange circle with wifi mark tilted 45 degrees)" loading="lazy" fetchpriority="low">
RSS
</button>
</a>
</div>
<div class="col-sm-4 offset-md-1 py-4">
<h4 class="text-white">scroll to...</h4>
<ul class="list-unstyled">
<li>
<a href="#" class="text-white">
<button class="btn bggreen text-white">
top
</button>
</a>
</li>
<li>
<a href="#AboutMe" class="text-white">
<button class="btn bggreen text-white">
Welcome message(About
Me)
</button>
</a>
</li>
<li>
<a href="#my-fav-games" class="text-white">
<button class="btn bggreen text-white">
my favorite
games
</button>
</a>
</li>
<li>
<a href="#my-friends" class="text-white">
<button class="btn bggreen text-white">
my friends
</button>
</a>
</li>
<li>
<a href="#my-rblx-games" class="text-white">
<button class="btn bggreen text-white">
my games on
roblox
</button>
</a>
</li>
</ul>
</div>
</div>
</div>
<span id="page-loading-space"></span>
</div>
</header>
<main>
<section class="py-5 text-center container rainbow" id="AboutMe" style=" background-color: var(--BbB-lime-green);width: 100%;padding: 10px;
border: 2px solid rgb(137, 72, 71);
border-radius: 15px;
-moz-border-radius: 15px;
color: rgb(99, 36, 36);
">
<div class="row py-lg-5" style="opacity: 1;">
<div class="col-lg-6 col-md-8 mx-auto textInAbout">
<h1 class="fw-light Font-UD">
<!-- style="font-family: 'UDDigital', 'minecraftia', sans-serif; font-weight: bold;" -->
MrT730
Website
</h1>
<p class="lead text-muted">
</p>
<h1>Welcome to my <span class="font-comic_sans">Website</span>!</h1>
<p></p>
<p>
</p>
<p style="font-size: 1.75rem;" class="Font-UD">Hi I am MrT formally known as MrT730. I like to code and
play games.</p>
<!--<a href="#" class="btn btn-primary my-2">Main call to action</a>
<a href="#" class="btn btn-secondary my-2">Secondary action</a>-->
<p></p>
</div>
</div>
<img crossorigin="anonymous" referrerpolicy="no-referrer"
src="https://avatars.githubusercontent.com/u/95097999?v=4" style="width: 20%;" loading="lazy"
alt="avatar of MrT">
<div class="d-flex align-items-center justify-content-center textInAbout">
<a href="https://youtube.com/@MrT_tak"><button class="btn bggreen text-white">Youtube</button></a>
<a href="https://github.com/MrT-tak/"><button class="btn bggreen text-white">Github</button></a>
<a href="mailto:MrT-tak@outlook.com"><button class="btn bggreen text-white">Mail</button></a>
</div>
</section>
<a href="javascript:void(0)" onclick="copyNavLink('AboutMe')" class="navLinkCopy text-center"
style="height: 10%; width: 10%;">#</a>
<div class="alert alert-success Font-Spring" role="alert" style="width: 40%;text-align:center;margin: 0 auto;">
Check out <img crossorigin="anonymous" referrerpolicy="no-referrer" alt="A.P.T (Anti Pollution Team)"
src="/APT.jpg" style="width: 35%;" loading="lazy"> to <span style="font-size: minmax(0.5cm, 3cm);"
class="Font-Spring">
about pollution</span> and <span style="font-size: 1cm;" class="Font-Spring">raise awareness about
nature!</span>
<br>
<button type="button" class="btn btn-sm btn-outline-secondary">
<a href="https://www.youtube.com/@antipollutionteamofficial2142" class="NoYTLinkIcon">
<img referrerpolicy="no-referrer" src="https://www.youtube.com/img/favicon_144.png" width="50cm" alt="youtube"
loading="lazy">
YOUTUBE
</a>
</button>
<button type="button" class="btn btn-sm btn-outline-secondary">
<a href="https://antipollutionteam.wixsite.com/ap-team" style="text-decoration: none;">
<img crossorigin="anonymous" referrerpolicy="no-referrer"
src="https://static.wixstatic.com/media/1c0726_b4cc97618fcd41ceaf2a73d55b5906b1~mv2.png/v1/fill/w_1110,h_1110,al_c,q_90,usm_0.66_1.00_0.01,enc_auto/1c0726_b4cc97618fcd41ceaf2a73d55b5906b1~mv2.png"
width="50cm" alt="website" loading="lazy">
Website
</a>
</button>
</div>
<div class="album py-5 bg-light">
<div class="container">
<a>
<iframe src="https://mrt-tak.github.io/blog/posts.html"
style="height: 100%;width: 100%; overflow: visible;"></iframe>
<a href="/blog/">Visit my blog page! (https://mrt-tak.github.io/blog/) </a>
</div>
<!--My fav GAME LIST-->
<div id="my-fav-games" class="game list">
<h1>My Favorite games<a onclick="copyNavLink('my-fav-games')" class="navLinkCopy"
href="javascript:void(0)">#</a>
</h1>
<div>
<h2 id="my-fav-game-PC-game">PC game<a onclick="copyNavLink('my-fav-game-PC-game')" class="navLinkCopy"
href="javascript:void(0)">#</a></h2>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3">
<div class="col">
<div class="card shadow-sm" id="minecraft">
<div class="card-img-top" style="position: relative; text-align: center;">
<!--<img crossorigin="anonymous" referrerpolicy="no-referrer" src="https://www.minecraft.net/content/dam/minecraft/home/home-hero-1200x600.jpg"
class="card-img-top"
alt="Minecraft background, Steve, Alex and a wolf(like a dog) watching a horizon with a village from a cliff with tree. A official artwork"
loading="lazy" style="width: 100%; height: 100%;">-->
<img crossorigin="anonymous" referrerpolicy="no-referrer" src="/img/MC-sakura.png"
class="card-img-top"
alt="Minecraft background, with mincraft sakura tree with beehive, house and a pig" loading="lazy"
style="width: 100%; height: 100%;">
<img referrerpolicy="no-referrer"
src="https://www.minecraft.net/content/dam/minecraftnet/games/minecraft/logos/Global-Header_MCCB-Logo_300x51.svg"
alt="Minecraft logo"
style="max-width: 60%; top: 10%;left: 10%; z-index: 100; position: absolute;">
</div>
<div class="card-body">
<p class="card-text">
<b><img referrerpolicy="no-referrer"
src="https://www.minecraft.net/content/dam/minecraftnet/games/minecraft/logos/Global-Header_MCCB-Logo_300x51.svg"
alt="Minecraft logo" style="max-width: 20%;"></b> was my
first game<sup>*1</sup> the I played. I was engage to
play
because most class mate play this game. I really like this game.
</p>
<p class="card-footer">
<img crossorigin="anonymous" referrerpolicy="no-referrer" class="card-img-bottom Font-Minecraftia"
style="height: 1cm; width: 1cm;" alt="MrT's minecraft skin"
src="https://api.mineatar.io/head/25842019b74e44d59b2accf406afc347?scale=16">
MrT730
</p>
<img crossorigin="anonymous" referrerpolicy="no-referrer"
src="https://api.mineatar.io/body/full/25842019-b74e-44d5-9b2a-ccf406afc347" style="height: 1%;"
alt="MrT730's minecraft skin">
<p class="card-footer" style="font-size: 1%; background: none;"><sup>*1</sup> may have played
Mario
cart, Mario tennis, Wii sport and other wii games before this time
</p>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm" id="roblox">
<img crossorigin="anonymous" referrerpolicy="no-referrer" src="/roblox-logo.png" class="card-img-top"
alt="roblox" loading="lazy">
<div class="card-body">
<!--<not used img src="roblox-logo.png" class="card-img-top" alt="roblox logo">-->
<p class="card-text">
Roblox was my second game the I played. Again I was engaged to play because most class mate
play this game.
</p>
</div>
<div>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group" style="text-decoration: none">
<button class="btn bggreen text-white">
<a href="#my-rblx-games" class="text-white">
my games on roblox
</a>
</button>
<a href="#my-rblx-games" class="text-white">
</a><button class="btn bggreen text-white"><a href="#my-rblx-games" class="text-white"></a><a
href="https://plsdonate.me/@tak_MrT" class="text-white">Donate Robux to me!</a></button>
</div>
</div>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm" id="fortnite">
<img crossorigin="anonymous" referrerpolicy="no-referrer"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/FortniteLogo.svg/375px-FortniteLogo.svg.png"
class="card-img-top" alt="Fortnite" loading="lazy"
style="background: linear-gradient(45deg, #ff8383, #8099ff); padding: 2%;">
<div class="card-body">
<!--<not used img src="roblox-logo.png" class="card-img-top" alt="roblox logo">-->
<p class="card-text">
I'm not good at fortnite lol.
</p>
</div>
</div>
</div>
</div>
</div>
<div>
<h2 id="my-fav-game-console-game">
console games
<a onclick="copyNavLink('my-fav-game-console-game')" class="navLinkCopy" href="javascript:void(0)">#</a>
</h2>
<div>
<img referrerpolicy="no-referrer" src="https://www.nintendo.co.jp/wii/img_cmn/wii_logo.gif"
alt="wii logo" />
<h3><span style="display:none;">Wii</span></h3>
I have played some of the wii games before 2022 and still to this day! Here is some of the games on wii
that I like(aka what I have played mostly):
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3">
<template>
<div class="col">
<div class="card shadow-sm" id="">
<img crossorigin="anonymous" referrerpolicy="no-referrer" src="-logo.png" class="card-img-top"
alt="roblox" loading="lazy">
<div class="card-body">
<p class="card-text">
</p>
</div>
</div>
</div>
</template>
<div class="col">
<div class="card shadow-sm" id="Wii-Party">
<img crossorigin="anonymous" referrerpolicy="no-referrer"
src="https://cdn02.nintendo-europe.com/media/images/10_share_images/games_15/wii_24/SI_Wii_WiiParty.jpg"
class="card-img-top" alt="Wii Party" loading="lazy">
<div class="card-body">
<p class="card-text">
Wii party something we played with my family.
This game makes me competive lol.
</p>
</div>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group" style="text-decoration: none">
<button class="btn bggreen text-white">
<a href="https://en.wikipedia.org/wiki/Wii_Party" class="text-white" rel="noopener">
wikipedia
</a>
</button>
</div>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm" id="Wii-Fit-Plus">
<img crossorigin="anonymous" referrerpolicy="no-referrer"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a1/WiiFit.svg/375px-WiiFit.svg.png"
class="card-img-top" alt="Wii Fit Plus" loading="lazy">
<div class="card-body">
<p class="card-text">
Wii Fit party was one of my favorite wii games and I wish it had came to switch.
</p>
</div>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group" style="text-decoration: none">
<button class="btn bggreen text-white">
<a href="https://www.wikipedia.com/en/Wii_Fit#Wii_Fit_Plus" class="text-white" rel="noopener">
wikipedia
</a>
</button>
</div>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm" id="GO-Vacation-Wii">
<img src="https://af2gc.bn-ent.net/assets/img/common/sns.png" class="card-img-top" alt="Go vacation"
loading="lazy">
<div class="card-body">
<p class="card-text">
Go vacation is the most favorite game in wii and it has been fun,
swimming, diving, racing, skiing with my dog, dog slegh and more!
</p>
</div>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group" style="text-decoration: none">
<button class="btn bggreen text-white">
<a href="https://www.wikipedia.com/en/Wii_Fit#Wii_Fit_Plus" class="text-white" rel="noopener">
wikipedia
</a>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!--<div>
<img crossorigin="anonymous" referrerpolicy="no-referrer" src="https://wikipediav2-19431.kxcdn.com/_next/image?url=https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Nintendo_Switch_logo.svg/1500px-Nintendo_Switch_logo.svg.png&w=1200&q=50f" alt="Nintendo Switch logo" />
<h3><span style="display:none;">Switch</span></h3>
Here is some of the games on switch
that I like(aka what I have played mostly):
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3">
<template>
<div class="col">
<div class="card shadow-sm" id="">
<img crossorigin="anonymous" referrerpolicy="no-referrer" src="-logo.png" class="card-img-top" alt="roblox" loading="lazy">
<div class="card-body">
<p class="card-text">
</p>
</div>
</div>
</div>
</template>
<div class="col">
<div class="card shadow-sm" id="Wii-Party">
<img crossorigin="anonymous" referrerpolicy="no-referrer" src="https://cdn02.nintendo-europe.com/media/images/10_share_images/games_15/wii_24/SI_Wii_WiiParty.jpg"
class="card-img-top" alt="Wii Party" loading="lazy">
<div class="card-body">
<p class="card-text">
Wii party something we played with my family.
This game makes me competive lol.
</p>
</div>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group" style="text-decoration: none">
<button class="btn bggreen text-white">
<a href="https://en.wikipedia.org/wiki/Wii_Party" class="text-white" rel="noopener">
wikipedia
</a>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>-->
</div>
<!-- FRIENDS LIST -->
<div id="my-friends" class="friend list">
<h1>My Friends</h1><a onclick="copyNavLink('my-friends')" class="navLinkCopy" href="javascript:void(0)"></a>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3">
<div class="col">
<div class="card shadow-sm" id="JustJack">
<img crossorigin="anonymous" referrerpolicy="no-referrer"
src="https://yt3.googleusercontent.com/qqBT1QmP2DiHr-tCMDnaH1MWUzT1MvVhncwwWzXIm7hM_GYUfHmi9ltBSGPAeRHthe3J9XU1-Iw=s176-c-k-c0x00ffffff-no-rj"
class="card-img-top" alt="JustJack" loading="lazy">
<div class="card-body">
<h1 class="Font-Minecraftia">
JustJack<a onclick="copyNavLink('')" class="navLinkCopy" href="javascript:void(0)"></a>
</h1>
<p class="card-text">
JustJack Is My Friend Jack which is owner of
<button type="button" class="btn btn-sm btn-outline-secondary">
<a target="_blank" rel="noopener" href=" https://block-by-Block-dev-team.github.io"
style="text-decoration: none; color:black">
<img crossorigin="anonymous" referrerpolicy="no-referrer"
src="https://avatars.githubusercontent.com/u/96121929?s=200&v=4" width="50cm"
alt="Block by Block logo" loading="lazy">
Block by Block
</a>
</button> which I am in.
</p>
</div>
<div>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group" style="text-decoration: none">
<button type="button" class="btn btn-sm btn-outline-secondary">
<a href="https://www.youtube.com/@JustJackYouTube">
<img referrerpolicy="no-referrer" src="https://www.youtube.com/img/favicon_144.png"
width="50cm" alt="youtube" loading="lazy">
YOUTUBE
</a>
</button>
</div>
</div>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm" id="NatiCreator">
<img referrerpolicy="no-referrer" src="https://naticreator.com/assets/img/avataaars.svg"
class="card-img-top" alt="NatiCreator" loading="lazy">
<div class="card-body">
<h1 class="Font-Minecraftia">
NatiCreator<a onclick="copyNavLink('')" class="navLinkCopy" href="javascript:void(0)"></a>
</h1>
<p class="card-text">
NatiCreator Is My Friend Nathaniel.
</p>
</div>
<a href="naticreator.com">
</a>
<div class="d-flex justify-content-between align-items-center"><a href="naticreator.com">
</a>
<div class="btn-group" style="text-decoration: none"><a href="naticreator.com">
</a><button type="button" class="btn btn-sm btn-outline-secondary"
style="border-radius: 5px 0px 0px 5px;"><a href="naticreator.com">
</a><a href="http://naticreator.com/">
<img referrerpolicy="no-referrer" src="http://naticreator.com/assets/img/avataaars.svg"
width="50cm" alt="website" loading="lazy">
His Homepage
</a>
</button>
<button type="button" class="btn btn-sm btn-outline-secondary">
<a href="https://www.youtube.com/channel/UCk672yED_Z5u5vTgNY8nlog/">
<img referrerpolicy="no-referrer" src="https://www.youtube.com/img/favicon_144.png"
width="50cm" alt="youtube" loading="lazy">
YOUTUBE
</a>
</button>
</div>
</div>
</div>
</div>
<!--<div class="col">
<a href="">
<div class="card shadow-sm" id="roblox">
<svg class="bd-placeholder-img card-img-top" width="100%" height="225" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Placeholder: Thumbnail" preserveAspectRatio="xMidYMid slice" focusable="false"><title>Placeholder</title><rect width="100%" height="100%" fill="#55595c"/><text x="50%" y="50%" fill="#eceeef" dy=".3em">Thumbnail</text></svg> -->
<!--<img crossorigin="anonymous" referrerpolicy="no-referrer" src="roblox-logo.png" class="card-img-top" alt="roblox logo">
<div class="card-body">
<img crossorigin="anonymous" referrerpolicy="no-referrer" src="roblox-logo.png" class="card-img-top" alt="roblox logo">
<p class="card-text">
Roblox was my second game the I played. Again I was engage to play because most class mate play this game. I really like this game but in 2022/06/18 it is boring.
</p>
</div>
</div>
</div>
-->
</div>
</div>
<!-- ROBLOX GAMES -->
<div id="my-rblx-games" class="game list">
<h1>My Roblox games</h1><a onclick="copyNavLink('')" class="navLinkCopy" href="javascript:void(0)"></a>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3">
<div class="col">
<div class="card shadow-sm" id="rblx-My-flight-game">
<img crossorigin="anonymous" referrerpolicy="no-referrer"
src="https://tr.rbxcdn.com/34cd23f9a4fa15b878fe414d733b130f/768/432/Image/Png" class="card-img-top"
alt="My flight game" loading="lazy">
<div class="card-body">
<h1 class="Font-Minecraftia">
My flight Game <span
style="background-color: yellow;color: black;font-style: italic;font-size: 60%;"><b>(βeta)</b></span>
</h1><a onclick="copyNavLink('')" class="navLinkCopy" href="javascript:void(0)">
<p class="card-text">
My flight game! (beta)
<br>
70%? market place models.
</p>
</a>
</div><a onclick="copyNavLink('')" class="navLinkCopy" href="javascript:void(0)">
</a><button type="button"
class="btn-full-width btn-common-play-game-lg btn-primary-md btn-min-width btn bggreen playBtn"
data-testid="play-button" style="color: white; width: 100%;" id="play-RBLX-MFG"><a
onclick="copyNavLink('')" class="navLinkCopy" href="javascript:void(0)">
<script>
const MFG = document.getElementById("play-RBLX-MFG").onclick(() => {
window.location.href = "https://rblx.games/11392168488"
})
</script>
</a><a src="https://rblx.games/11392168488">
PLAY
</a>
</button>
</div>
</div>
<div class="col">
<div class="card shadow-sm" id="rblx-My-obby-game">
<img crossorigin="anonymous" referrerpolicy="no-referrer"
src="https://t2.rbxcdn.com/08584ab10b47916f1b94dc93df34e5e4" class="card-img-top" alt="My obby game"
loading="lazy">
<div class="card-body">
<h1 class="Font-Minecraftia">
Obby<span
style="background-color: yellow; color: black; font-style: italic; font-size: 60%;"><b>(βeta)</b></span>
</h1><a onclick="copyNavLink('')" class="navLinkCopy" href="javascript:void(0)">
<p class="card-text">
Made with the RBLX template.
</p>
</a>
</div><a onclick="copyNavLink('')" class="navLinkCopy" href="javascript:void(0)">
</a><a src="https://rblx.games/11878058995">
</a><button type="button"
class="btn-full-width btn-common-play-game-lg btn-primary-md btn-min-width btn bggreen playBtn"
data-testid="play-button" style="color: white; width: 100%;"><a
src="https://rblx.games/11878058995"></a><a src="https://rblx.games/11878058995">PLAY</a></button>
</div>
</div>
</div>
</div>
<h1 id="favorite-youtuber">Favorite Youtuber</h1><a onclick="copyNavLink('')" class="navLinkCopy"
href="javascript:void(0)">
</a>
<p><a onclick="copyNavLink('')" class="navLinkCopy" href="javascript:void(0)">
Favorite Youtuber is a lot so it has a separete page.
</a><a href="/favorite youtuber/index.html?from=/">Click Here</a>
</p>
<h1 id="subed-chan">Subscribed channel</h1>
<p>
Subscribed channel is a lot so it has a separete page.
<a href="/subscribed channels/?from=/">Click Here</a>.
</p>
</div>
</div>
</div>
<div id="comments"
style="background-color: white; border-color: var(--BbB-brown); border-style: dashed; border-radius: 12px; padding: 1%;">
<h1>Comments:</h1>
<script src="https://giscus.app/client.js" data-repo="mrt-tak/mrt-tak.github.io" data-repo-id="R_kgDOGpG8dw"
data-category="comments" data-category-id="DIC_kwDOGpG8d84Cju5-" data-mapping="pathname" data-strict="0"
data-reactions-enabled="1" data-emit-metadata="0" data-input-position="bottom"
data-theme="preferred_color_scheme" data-lang="en" crossorigin="anonymous" data-loading="lazy" async>
</script>
<!-- comment section -->
<p style="font-size: 120%; font-weight: bold;">Let's chat! Any questions please post it here.</p>
<div class="giscus"></div>
<script>
function changeGiscusTheme() {
console.log("Start changing giscus theme..")
let theme = document.documentElement.getAttribute('data-theme') === 'dark' ? 'dark' : 'light'
console.log("Target theme: " + theme)
function sendMessage(message) {
const iframe = document.querySelector('iframe.giscus-frame');
if (!iframe) console.warn("No giscus-iframe");
if (!iframe) return;
iframe.contentWindow.postMessage({ giscus: message }, 'https://giscus.app');
}
sendMessage({
setConfig: {
theme: theme
}
});
}
console.log("Registering waitForElm...")
function waitForElm(selector) {
return new Promise(resolve => {
if (document.querySelector(selector)) {
return resolve(document.querySelector(selector));
}
const observer = new MutationObserver(mutations => {
if (document.querySelector(selector)) {
observer.disconnect();
resolve(document.querySelector(selector));
}
});
// If you get "parameter 1 is not of type 'Node'" error, see https://stackoverflow.com/a/77855838/492336
observer.observe(document.body, {
childList: true,
subtree: true
});
});
}
console.log("Registering waitForElm promises...")
waitForElm('iframe.giscus-frame').then((elm) => {
console.log("iframe spawned.")
setTimeout(function () {
console.log("ping")
changeGiscusTheme();
}, 1000)
setTimeout(function () {
console.log("ping")
changeGiscusTheme();
}, 5000)
setTimeout(function () {
console.log("ping")
changeGiscusTheme();
}, 5000)
});
</script>
<!--<script defer disabled>
// Function to handle style changes
const handleStyleChange = (mutationsList, observer) => {
for (const mutation of mutationsList) {
if (mutation.type === 'childList') {
// Check if a style tag was added or removed
mutation.addedNodes.forEach(node => {
if (node.tagName === 'STYLE') {
console.log('Style tag added:', node.textContent);
// Add your custom logic here to process the new style
}
});
mutation.removedNodes.forEach(node => {
if (node.tagName === 'STYLE') {
console.log('Style tag removed:', node.textContent);
// Add your custom logic here to handle the removed style
}
});
} else if (mutation.type === 'attributes') {
// Check if the style attribute of an element has changed
if (mutation.attributeName === 'style') {
console.log('Style attribute changed:', mutation.target.style.cssText);
// Add your custom logic here to process the style change
}
}
}
};
// Create a new MutationObserver instance
const observer = new MutationObserver(handleStyleChange);
// Select the iframe element by class
const iframe = document.querySelector(`iframe.giscus-frame`);
alert(iframe.innerHTML)
// Configure the observer to watch for style tag changes and attribute changes
const config = { childList: true, subtree: true, attributes: true, attributeFilter: ['style'] };
// Start observing the iframe
observer.observe(iframe, config);
</script>-->
<script defer>
console.log("defer script running..")
</script>
<script>
const iframe = document.selector('iframe.giscus-frame');
iframe.contentWindow.document.body.style.backgroundColor = 'rgb(255,5,255)';
const cssLink = document.createElement("link");
cssLink.href = "styles.css";
cssLink.rel = "stylesheet";
cssLink.type = "text/css";
frames['frame1'].contentWindow.document.head.appendChild(cssLink);
</script>
</div>
</main>
<footer class="text-muted py-5">
<div class="container">
<p class="float-end mb-1">
<a href="#">Back to top</a>
</p>
<p class="mb-1">MrT730 HP</p>
</div>
<!-- copyright and notices --->
<div class="container">
<p class="mb-0">
</p>
<h1>MrT730 Programer's edited version of album example</h1><a onclick="copyNavLink('')" class="navLinkCopy"
href="javascript:void(0)">
<p><b>MrT730</b></p>
</a>
<p><a onclick="copyNavLink('')" class="navLinkCopy" href="javascript:void(0)">
</a><a target="_blank" rel="noopener" href="http://creativecommons.org/licenses/by-nc/4.0/"><img
crossorigin="anonymous" referrerpolicy="no-referrer" alt="Creative Commons License" style="border-width:0"
src="https://i.creativecommons.org/l/by-nc/4.0/88x31.png"></a><br>This work is
licensed under a <a target="_blank" rel="noopener" href="http://creativecommons.org/licenses/by-nc/4.0/">©
Creative Commons
Attribution-NonCommercial 4.0 International License</a> unless noted otherwise.
<a target="_blank" rel="noopener" href=" /LICENSE.html">CLICK HERE FOR LICCENSE.md</a>.
Mainly the images that is from the photographs directory(I mean by page) and subdirectories(I mean by pages
inside of /photographs/ pages) are usually licensed under the same license with CC-BY NC(the website's
license).
</p>
<p> © Bootstrap for template</p>
<h2>Thanks to Mark Otto, Jacob Thornton, and Bootstrap contributors for bootstrap</h2><a onclick="copyNavLink('')"
class="navLinkCopy">#</a>
<a href="https://www.flaticon.com/free-icons/rss" title="rss icons">
Rss icons created by Ruslan Babkin - Flaticon
</a>
<p>
background image in about me section was made by me using sketch school app
</p>
<p>
</p>
<p>Font: Spring is licensed under the 1001Fonts Free For Commercial Use License (FFC)</p>
<p class="font-UD"><abbr title="Universal Design">UD</abbr> Font is a font used in Japanese text books</p>
<p></p>
<a target="_blank" href="https://icons8.com/icon/22028/mail" rel="noopener">Mail icon by Icons8</a>
<a target="_blank" href="https://icons8.com/icon/68r18jerXB_P/youtube" rel="noopener">YouTube icon by
Icons8</a>
</div>
</footer>
</body>
</html>