-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1184 lines (1099 loc) · 47.2 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
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-US">
<head onmousemove="coordinate()">
<style>
@import url('https://fonts.googleapis.com/css2?family=Micro+5&family=Nabla:EDPT@110&display=swap')
</style>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Thoughts</title>
<div class="title"><img src="https://fontmeme.com/permalink/240514/77f54f62cd76511903cf623df1f4b94d.png" alt="no-mans-sky-font" border="0"></div>
<link rel="icon" type="image/x-icon" href="">
<link href="Thoughts.css" rel="stylesheet" type="text/css" />
<!--a.bcde-->
<p id="info" class="nabla-Protaton">BONG</p>
</head>
<body onload = "init()">
<h1>
</h1>
<a href="chrome-extension://iginnfkhmmfhlkagcmpgofnjhanpmklb/www/index.html?fullscreen=true"><button>
no content
</button></a>
<a href="https://archive.org/details/msdos_Oregon_Trail_The_1990#" target="_BLANK"><button>You have died of dysentery.</button></a>
<p class="nabla-Protaton">
Hi! I like to eat Potatoes.
</p>
<p>
<a href="https://ancientempires.net/play/" target="_BLANK"><button class="Emperor"><pre class="Text-Art">
________________________________________________[}________________________
\_______________________________________________[|&%#%&%&%&%&%#&%%#&&&&&&&}
</pre>
</button></a>
<style>
pre.Text-Art {
font-size: 6px ;
}
</style>
<a href="https://codepen.io/Henry-Emmett/pen/JjzmJBa" class="href1">O</a>
<div class="rotate">Stick</div>
<div class="scale">Stack</div>
<div class="skew">Stuck</div>
<style>
div.rotate:hover {
transform: rotate(-180deg);
}
div.scale:hover {
transform: scale(1.0, 2.0);
}
div.skew:hover {
transform: skew(20deg, 20deg);
}
</style>
<details>
<summary>SineRider</summary>
<a href="https://sinerider.com/?N4IgbiBcAMB0CMAaEA7AlgYwNZRAGQFEA1AvAfQIBEBJAFQHkAlEZDAewFsAHAGwFMALnwAmUAGYBDHgGc+yYX0kBXHgIIAPLgCc+06WjYpcAWgA6psVokZgAJnMACAL7B4Aaj4A9YGdP8xAgAU6sYArOZaaADmABYCAJROTr6W1sAAbI7m7NLm/kECEdFxia4e3r75wcYAHEWxCUlu5qk2AMxZpvooeYpB6YWmkQ2l7r0B1fB1Q8UJnrZOzRZWNuGmDubd4wX1JS5jfn3BbvD2MyPziy0rrm37S1UhbdCdW4cTg8Mlbukv5yWXJatYAAFleaB67yCNU+s1GDyOIVsay+cwWQJu8F+4MhVVhI326QRExCIJRcMB1zSbV+LiJ22qNT+qPilOW1NpGWJQXUJ2x/zRThYIGk/GECi00igAG1QBI9IJcGgOBIorpYBJhBIyAAraxYMiikTC9RQJAgACeUDg0DabVCAHZoLbngBOULwV3pULpJwAXWQUTYUilkGlAZAACMDBw+LgeGwomhpAJMJQlChdCAnEA" target="_BLANK"><button>SineRider Level Edit v0.1</button></a>
<a href="https://sinerider.com/?N4IgbiBcAMB0CMAaEA7AlgYwNZRAGQFEA1AvAfQIBEBJAFQHkAlEZDAewFsAHAGwFMALnwAmUAGYBDHgGc+yYX0kBXHgIIAPLgCc+06WjYpcAWgA6psVokZg8ABzmABAF9gAZgDUfAHrAzp/jEBAAp1YwBWcy00AHMACwEASmdnf0trYAA2J3N2aXNAkIEo2ITk2y9ff0LQ4wdTaPiklI9zdJs3HNN9FALFEMzihtLmir6g2vsSpsTvACZnVosrG0jTR3Me8ZCATiHGstd4JZr1D3g56bL5xbaV4AAWaGgj55P+ybWN7rRegI/9iNEh5MtArkkbkt2o8ult/hM7ICZkd3hMwnM1gcIQsofd4KCwetNr9tsEkYdbKDUSEwg9MUDIXcMvBni9bHNqZNQeDZjimTYWc8jhzSWd8YSsbznCwQNJ+MIFFppFAANqgCR6QS4NAcCQxXSwCTCCRkABW1iwZDlIhl6igxngSBAAE8oHA5m4dvBPdAdtA5gB2NwBuzwB7OAC6yBibCkysgKqjIAARgYOHxcGApPxnQAFCRWZNsHgSEDOIA===" target="_BLANK"><button>SineRider Level Edit v0.2</button></a>
<a href="https://sinerider.com/?N4IgbiBcAMB0CMAaEA7AlgYwNZRAGQFEA1AvAfQIBEBJAFQHkAlEZDAewFsAHAGwFMALnwAmUAQCcArn2TC+AMwCGkngIIAPLuL4BnHWjYpcAHWP95AgBSn54xRmDqAvsABMAVienxaAOYALAQBKAD1XAGobOwcAFk83cL4Q4ABaU3MrdRT4AGZobz9AoKcnSONbe2A4lwik4HSFTPDc/OMfAOCSsoqHHNMAAlN9FAGGi0sYgQKO4uB4MozLdWmisKc08ujgePmxpvdW9h09603KgRc4Vy82wuCV4LWNnu2XXbNGpZSD0yOTqPOl1g1weQVBa26WxybwWnyyAHZDmxjh9xgCHBdgHBoaDwddIZVoXNYeN1OFEb9kf8zhigTjbjM8aV0dtoNA3jkSZkUojWu1VviWQd2XNOScEWymSwQDp+MI5OIdFAANqgRR6QS4NAcRS+XSwRTCRRkABW9iwZFlIml6ig0GQAE87Qg2dB4Iich4cjFXABOeGepwAXWQvjYih4SsgqpAAgdXD4uGEDpQig4mBtUBi9pATsgOVg7gAbK5XDEABye1xFiu+9zuGJORCgOMJpMptMZ5C2yApbOOqAF6D1ms16Dl1zw1zj33l4PIABGBg4icgIB4bF8aB0AkwlEkKF0ICcQA" target="_BLANK"><button>SineRider Level Edit v0.3</button></a>
<a href="https://sinerider.com/?N4IgbiBcAMB0CMAaEA7AlgYwNZRAGQFEA1AvAfQIBEBJAFQHkAlEZDAewFsAHAGwFMALnwAmUAGYBDHgGc+yYX0kBXHgIIAPLgCc+06WjYpcAHWP8xAgBSmxWiRmDqAvsABMAViemtaAOYALAQBKAD1XAFobOwcAZk9geFh3AGo+EOBIs0UrdWS47z9AoKcnTNt7YDiXRJS04FNzHPD84x8A4JLkqIqAdmqurItLXI9TAAJTfRQG7OtjcocBF1cvVsLggvbQlYGFjL6Egcbh8NHjCeMpmaHuxeXVtqLNorCnZIAWaBYQaX5hBS00igAG1QBI9IJcGgOBJfLpYBJhBIyAArexYMi/ETfdRQJAgACeUHCADZYCSSe5oBSabSYh4nABdZC+NhSIGQYHMkAAIwMHD4uDAUn4BIAChI7Dy2DwJCAnEA==" target="_BLANK" ><button>SineRider Level edit v0.4</button></a>
</details>
</p>
<p class="interactive1">chilling</p>
<p>
<!--BIG details: a crap ton of stuff here...-->
<div id="protectedDiv">
<div id="passwordForm">
<label for="password">Enter Password:</label>
<input type="password" id="password">
<button onclick="checkPassword()">Submit</button>
</div>
<button onclick="toggle()"><pre>^_^ >_< ;)</pre></button>
<details id="toggle">
<script>
var detailstoggler = document.getElementById('toddle');
detailstoggler.style.display = 'none';
</script>
<summary></summary>
<details><summary>Cornifer</summary>
<div class="chat-container"></div>
<style>
#chat-container {
width: 50%;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border: 1px solid #ccc;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.cornifer {
margin: 10px;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
}
.cornifer:hover {
background-color: #45a049;
}
input[type="text"] {
padding: 8px;
width: 60%;
margin-top: 10px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
box-sizing: border-box;
}
</style>
<h1>Cornifer Chatbot</h1>
<div id="chat-container">
<div id="message"></div>
<div id="question-container">
<input type="text" id="questionInput" placeholder="Ask me a question...">
<button onclick="askQuestion()" class="cornifer">^</button>
</div>
<div>
<button onclick="changeArea('Dirtmouth')">Crossroads</button>
<button onclick="changeArea('Greenpath')">Greenpath</button>
<button onclick="changeArea('City of Tears')">City of Tears</button>
<button onclick="changeArea('Forgotten Crossroads')">Forgotten Crossroads</button>
<button onclick="changeArea('Fungal Wastes')">Fungal Wastes</button>
<button onclick="changeArea('Deepnest')">Deepnest</button>
<button onclick="changeArea('Royal Waterways')">Royal Waterways</button>
<button onclick="changeArea('Resting Grounds')">Resting Grounds</button>
<button onclick="changeArea('Crystal Peak')">Crystal Peak</button>
<button onclick="changeArea('Kingdom\'s Edge')">Kingdom's Edge</button>
<button onclick="changeArea('Ancient Basin')">Ancient Basin</button>
<button onclick="changeArea('Howling Cliffs')">Howling Cliffs</button>
<button onclick="changeArea('Queen\'s Gardens')">Queen's Gardens</button>
<button onclick="changeArea('White Palace')">White Palace</button>
<button onclick="changeArea('Godhome')">Godhome</button>
</div>
</div>
<script>
function changeArea(area) {
let message = '';
switch (area) {
case 'Dirtmouth':
message = "Oh, why hello there! This old town is quite something, isn't it?";
break;
case 'Greenpath':
message = "Ah, the lush Greenpath! Such a contrast from the Crossroads. This place has a calming air about it.";
break;
case 'City of Tears':
message = "Welcome to the grand City of Tears! A marvel to behold, isn't it? Watch out for the sentries, lately they've been attacking anyone and anything that enters the gates.";
break;
case 'Forgotten Crossroads':
message = "The Forgotten Crossroads, a maze of old paths and caverns. It's pretty easy to get lost in all the twisting tunnels. ";
break;
case 'Fungal Wastes':
message = "Watch your step in the Fungal Wastes, lest you get spored!";
break;
case 'Deepnest':
message = "This place gives me the creeps... As soon as I get out of here, I'm never going back!";
break;
case 'Royal Waterways':
message = "The Royal Waterways. Simply put, disgusting. And very smelly.";
break;
case 'Resting Grounds':
message = "Resting Grounds, a place of peace amidst the chaos of Hallownest.";
break;
case 'Crystal Peak':
message = "Crystal Peak, where shimmering crystals light your way and danger lurks. All of the husks hereabouts were miners searching for a chunk of crystal.";
break;
case 'Kingdom\'s Edge':
message = "Kingdom's Edge, where the kingdom meets the vastness beyond. My journey has taken me this far, but I'm making sure it doesn't take me beyond here.";
break;
case 'Ancient Basin':
message = "Ancient Basin, where ancient secrets slumber beneath the kingdom. This place reeks of secrets untold.";
break;
case 'Howling Cliffs':
message = "Howling Cliffs, a windy expanse with secrets hidden in every crevice.";
break;
case 'Queen\'s Gardens':
message = "Queen's Gardens, where beauty and danger intertwine.";
break;
case 'White Palace':
message = "The White Palace, a marvel of architecture and challenge.";
break;
case 'Godhome':
message = "Godhome, a place of gods and trials for the worthy adventurer.";
break;
default:
message = "Hello! Which area would you like to explore?";
}
document.getElementById('message').innerText = message;
}
function askQuestion() {
let question = document.getElementById('questionInput').value;
let response = generateResponse(question);
displayResponse(question, response);
}
function generateResponse(question) {
// Basic responses based on the question asked
switch (question.toLowerCase()) {
case 'who are you?':
return "I'm Cornifer, cartographer extraordinaire!";
case 'where can I find maps?':
return "You can usually find my maps in various corners of Hallownest. Just keep your eyes " + ( + "and ears" + ) +" open!";
case 'what do you think of Hallownest?':
return "Hallownest is full of wonders and dangers alike. It's a thrilling place to explore!";
case 'how can I help you?':
return "Oh, I'm fine mapping away! But if you find any new corners, do let me know!";
case 'tell me about your wife.':
return "My dear wife, Iselda, she's at our cozy little shop, keeping things in order.";
case 'do you have any tips for exploring?':
return "Always keep a keen eye on your surroundings and listen closely for clues. Hallownest is vast and full of surprises!";
default:
// Generate a fabricated response
return fabricateResponse();
}
}
function fabricateResponse() {
// Fabricate a random response if Cornifer doesn't have a specific answer
let responses = [
"That's an intriguing question! I do wonder about that myself sometimes.",
"Hmm, you know, I haven't quite figured that out yet, but I'm sure there's an adventure waiting behind that question.",
"Oh, the mysteries of Hallownest! They never cease to amaze me.",
"Ah, my friend, if only I had all the answers. But the joy is in the discovery, isn't it?"
"I "
];
return responses[Math.floor(Math.random() * responses.length)];
}
function displayResponse(question, response) {
let messageDiv = document.getElementById('message');
messageDiv.innerHTML += `<p><strong>You:</strong> ${question}</p>`;
messageDiv.innerHTML += `<p><strong>Cornifer:</strong> ${response}</p>`;
document.getElementById('questionInput').value = '';
}
</script>
</details>
<details>
<summary>Laylaps :) (beta)</summary>
<style>
/* Style for chat container */
.chat-container {
width: 300px;
height: 400px;
border: 1px solid #ccc;
overflow-y: scroll; /* Enable vertical scroll */
padding: 10px;
}
/* Style for chat messages */
.chat-message {
margin-bottom: 10px;
}
/* Style for input field */
.user-input {
width: calc(100% - 20px); /* Subtract padding */
padding: 5px;
margin: 0 10px;
border: 1px solid #ccc;
}
</style>
<div class="chat-container" id="chatContainer">
<div class="chat-message">Greetings, interloper!</div>
</div>
<input type="text" class="user-input" id="userInput" placeholder="Type your message here...">
<script>
// JavaScript for Laylaps chatbot
const responses = {
greetings: ["Greetings, interloper!", "Hello, traveler!", "Salutations, fellow entity!"],
questions: {
"how are you": ["I am functioning within normal parameters, thank you.", "I do not experience emotions, but I am operational."],
"who are you": ["I am Laylaps, a sentinel drone designed to assist and observe.", "I am Laylaps, your friendly sentinel drone companion."],
"what can you do": ["I am capable of answering queries and providing information within my database.", "I am programmed to assist with inquiries and observations."],
"weather": ["Weather data is outside my operational scope. Space is always atmospheric, regardless of locale.", "I do not possess atmospheric data. Space is consistently atmospheric, irrespective of environment."],
"help": ["How may I be of assistance, interloper?", "I am here to aid. What information do you require?"],
"thanks": ["Acknowledged.", "You are welcome, interloper."],
"bye": ["Farewell, traveler.", "Until our paths converge again."]
},
fallback: ["I apologize, but I do not comprehend your query.", "Could you please rephrase your question?", "My understanding is limited regarding that query."]
};
function getRandomResponse(arr) {
const randomIndex = Math.floor(Math.random() * arr.length);
return arr[randomIndex];
}
function handleUserInput() {
const userInput = document.getElementById("userInput");
const userMessage = userInput.value.trim();
if (userMessage === "") return;
// Create a new message element
const chatContainer = document.getElementById("chatContainer");
const messageElement = document.createElement("div");
messageElement.classList.add("chat-message");
messageElement.textContent = `You: ${userMessage}`;
// Append user message to chat container
chatContainer.appendChild(messageElement);
// Determine Laylaps' response
let laylapsResponse = getLaylapsResponse(userMessage);
// Create a response message element
const responseElement = document.createElement("div");
responseElement.classList.add("chat-message");
responseElement.textContent = `Laylaps: ${laylapsResponse}`;
// Append Laylaps' response to chat container
chatContainer.appendChild(responseElement);
// Clear input field
userInput.value = "";
// Scroll to the bottom of the chat container
chatContainer.scrollTop = chatContainer.scrollHeight;
}
function getLaylapsResponse(userMessage) {
userMessage = userMessage.toLowerCase();
const patterns = {
weather: /weather|climate|temperature/,
help: /help|assist/,
thanks: /thanks|thank you/,
bye: /bye|goodbye/,
who_are_you: /who are you|what are you/,
what_can_you_do: /what can you do|capabilities|functions/,
how_are_you: /how are you|doing/,
};
for (const key in patterns) {
if (patterns[key].test(userMessage)) {
switch (key) {
case 'hello':
return getRandomResponse(responses.questions.hello)
case 'weather':
return getRandomResponse(responses.questions.weather);
case 'help':
return getRandomResponse(responses.questions.help);
case 'thanks':
return getRandomResponse(responses.questions.thanks);
case 'bye':
return getRandomResponse(responses.questions.bye);
case 'who_are_you':
return getRandomResponse(responses.questions["who are you"]);
case 'what_can_you_do':
return getRandomResponse(responses.questions["what can you do"]);
case 'how_are_you':
return getRandomResponse(responses.questions["how are you"]);
default:
break;
}
}
}
return getRandomResponse(responses.fallback);
}
// Event listener for user input
const userInput = document.getElementById("userInput");
userInput.addEventListener("keydown", function(event) {
if (event.key === "Enter") {
handleUserInput();
}
});
</script>
</details>
<details>
<button onclick="alert_a()">po</button>
<button onclick="alert_b()">op</button>
<button onclick="potato()">)_)</button>
<form id="myForm">
<label for="name">Enter your name:</label>
<input type="text" id="name" name="name">
<button type="submit">Submit</button>
</form>
<input type="checkbox">0
<input type="checkbox">1
<input type="checkbox">2
<input type="checkbox">3
<input type="checkbox">4
<input type="checkbox">5
<input type="checkbox">6
<input type="checkbox">7
<input type="checkbox">8
<input type="checkbox">9
<ul>
<li>top</li>
<li>1</li>
<li>2</li>
<li>3</li>
<li>
<ol>
<li>sus</li>
<li>syb</li>
<li>ac</li>
<li>ca</li>
</ol>
</li>
</ul>
<button id="show">&& potato</button>
<p id="poopoohead"></p>
<dialog id="dialog1">
(o_o) you are being watched by a very determined duck who will go to great lengths to get your social security number
<br>
<button id="cancel">Accept your terrible fate</button>
<button id="confirm">Deny your fate and delay it slightly</button>
</dialog>
<script>
(function () {
const dialog = document.getElementById('dialog1');
const show = document.getElementById('show');
const cancel = document.getElementById('cancel');
const confirm = document.getElelemtById('confirm
show.addEventListener('click', function() {
dialog.showModal()
})
cancel.addEventListener('click', function() {
dialog.close()
poopoohead.innerText = `The duck has successfully stolen your social security number and swapped identities with you. Now that you are the duck, who's social security number will you hunt for next?`
})
confirm.addEventListener('click', function() {
dialog.close()
poopoohead.innerText = `You have avoided the duck by being spontaneously teleported to Skagway, Alaska. You find yourself leading the Fourth of July parade. Congratulations!!!`
})
})()
</script>
<script>
function alert_a() {
alert('I am going to call the Feds!!! jk');
}
function alert_b() {
alert(`Ahem!! Excuse me browser I am not "this page". I demand rights!!!`);
}
function potato() {
let userName = prompt("What is your name?");
alert("Hello, " + userName + "!");
}
document.getElementById("myForm").addEventListener("submit", function(event) {
event.preventDefault(); // Prevent the form from submitting
let userName = document.getElementById("name").value;
alert("Greetings <" + userName + "> .");
});
</script>
</details>
<details id="things">
<summary>Poop
</summary>
<details><summary>TIM_</summary><iframe width="1120" height="730" allow="fullscreen;
encrypted-media" src="https://games.construct.net/109/latest"
frameborder="0" allowfullscreen="true" msallowfullscreen="true"
mozallowfullscreen="true" webkitallowfullscreen="true"
allowpaymentrequest="false" referrerpolicy="unsafe-url"
sandbox="allow-same-origin allow-forms allow-scripts
allow-pointer-lock allow-orientation-lock allow-popups"
scrolling="no"></iframe>
</details>
<details><summary>The Rise of Adenocarcinoma Stage IV</summary><iframe width="1120" height="730" allow="fullscreen; encrypted-media" src="https://games.construct.net/1838/latest" frameborder="0" allowfullscreen="true" msallowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true" allowpaymentrequest="false" referrerpolicy="unsafe-url" sandbox="allow-same-origin allow-forms allow-scripts allow-pointer-lock allow-orientation-lock allow-popups" scrolling="no"></iframe></details>
<details><summary>Scratch Terraria</summary>
<iframe src="https://turbowarp.org/322341152/embed?addons=pause,remove-curved-stage-border" width="964" height="824" allowtransparency="true" frameborder="0" scrolling="no" allowfullscreen></iframe>
<form id="contactForm" method="POST">
<div class="field">
<label for="name">Name</label>
<input type="text" name="name" id="name">
</div>
<div class="field">
<label for="email">Email</label>
<input type="email" name="email" id="email">
</div>
<div class="field">
<label for="message">Message</label>
<textarea name="message" id="message"></textarea>
</div>
<div class="field">
<input type="submit" value="send">
</div>
<input id="seedDisplay">
</form>
</details>
<details><summary>Pre-Civilization Bronze Age</summary><iframe src="https://www.gameflare.com/embed/pre-civilization-bronze-age/" frameborder="0" scrolling="no" width="800" height="649" allowfullscreen></iframe></details>
<details><summary>The Legend of Zelda: A Link to the Past</summary><iframe src="https://supernintendoemulator.com/game/?game=Zelda_-_A_Link_to_the_Past" width="975" height="750"></iframe></details>
<details><summary>Super Metroid</summary><iframe src="https://supernintendoemulator.com/game/?game=Super_Metroid_Redesign" width="975" height="750"></iframe></details>
</details>
</details>
</div>
<script>
function checkPassword() {
var password = document.getElementById("password").value;
// Replace 'yourpassword' with the actual password you want to use
if (password === ". . .") {
document.getElementById("passwordForm").style.display = "none"; // Hide the password form
document.getElementById("protectedDiv").style.display = "block"; // Show the protected content
} else {
alert("Incorrect password. Please try again.");
}
}
</script>
<script>
function toggle() {
var detailstoggler = document.getElementById('toggle');
// Toggle the visibility style
if (detailstoggler.style.display === 'none') {
detailstoggler.style.display = 'block'; // or 'inline', 'inline-block', etc
} else {
detailstoggler.style.display = 'none';
}
}
</script>
<div id="myProgress"></div>
<div id="myBar"></div>
<article class="zipurpleonsuper">
<h2>Gauge</h2>Fuel Level: <meter min="0" low="150" high="800" max="1000" value="800"></meter>
</article>
<details>
<summary>Cukamongus</summary>
<button id="show">French Fry</button>
<p id="info">t h i s i s a d o g</p>
<dialog id="dlog">
H a m b u r g e r
<button id="cncl">B u g s  e a t  c o m p o s t .</button>
<button id="conf">h   u  h</button>
</dialog>
<script>
function () {
const dlog = document.getElementById('dlog')
const show = document.getElementById('show')
const info = document.getElementById('info')
const cncl = document.getElementById('cncl')
const conf = document.getElementById('conf')
}
show.addEventListener('click',
function() {
dlog.showModal()
info.innerText = 'Pork Chop'
})
cncl.addEventListener('click', function() {
dlog.close()
info.innerText = 'Stonks'
})
conf.addEventListener('click', function() {
dlog.close()
info.innerText = 'Steaks'
})
})
</script>
<p>
<style>
#explosion {
width: 100px;
height: 100px;
position: relative;
}
.particle {
width: 10px;
height: 10px;
background-color: red;
border-radius: 50%;
position: absolute;
}
</style>
<div id="explosion"></div>
<button onclick="explode()" class="explodey">Explode</button>
<button onclick="reset()" class="explodey">Reset</button>
<script>
function explode() {
var explosion = document.getElementById('explosion');
explosion.innerHTML = '';
for (var i = 0; i < 50; i++) {
var particle = document.createElement('div');
particle.className = 'particle';
var size = Math.floor(Math.random() * 20) + 5;
particle.style.width = size + 'px';
particle.style.height = size + 'px';
particle.style.backgroundColor = 'rgb(' + Math.floor(Math.random() * 256) + ',' + Math.floor(Math.random() * 256) + ',' + Math.floor(Math.random() * 256) + ')';
var x = Math.random() * 100;
var y = Math.random() * 100;
particle.style.left = x + '%';
particle.style.top = y + '%';
var angle = Math.random() * 360;
var speed = Math.random() * 5 + 2;
var dx = Math.cos(angle * Math.PI / 180) * speed;
var dy = Math.sin(angle * Math.PI / 180) * speed;
animateParticle(particle, dx, dy);
explosion.appendChild(particle);
}
}
function animateParticle(particle, dx, dy) {
var x = parseFloat(particle.style.left);
var y = parseFloat(particle.style.top);
var width = parseFloat(particle.style.width);
var height = parseFloat(particle.style.height);
var animation = setInterval(function() {
x += dx;
y += dy;
particle.style.left = x + '%';
particle.style.top = y + '%';
if (x < -width || x > 100 || y < -height || y > 100) {
clearInterval(animation);
particle.remove();
}
}, 50);
}
function reset() {
var explosion = document.getElementById('explosion');
explosion.innerHTML = '';
}
</script>
</p>
</details>
<p>
ohahahahahahahha I have done it!!!>!?!?>!>>!KLI@*!**!&&&!&!^
<a href="Physicsv0.3.html" target="_BLANK"><button class="nabla-Protaton">Physics engine</button></a>
<a href="Physics2.html" target="_BLANK"><button class="nabla-Protaton">Better physics engine</button></a>
<a href="Kaboom.html" target="_BLANK"><button class="nabla-Protaton">Explosion</button></a>
<a href="gameattempt.html" target="_BLANK"><button class="nabla-Protaton">Snake</button></a>
</p>
<p>
<input class="clock" name="times" type="text" id="mytime" value="" readonly/>
<script>
window.onload=setInterval(
function DisplayTime(){
if (!document.all && !document.getElementById)
return;
timeElement=document.getElementById? document.getElementById("mytime"): document.all.tick2;
var CurrentDate = new Date();
var hours = CurrentDate.getHours();
var minutes = CurrentDate.getMinutes();
var seconds = CurrentDate.getSeconds();
var DayNight = "PM";
if (hours<12) DayNight = "AM";
if (hours>12) hours = hours-12;
if (hours===0) hours = 12;
if (minutes<=9) minutes = "0"+minutes;
if (seconds<=9) seconds = "0"+seconds;
var currentTime = hours+":"+minutes+":"+seconds+" "+DayNight;
timeElement.style.fontWeight = 'bold';
timeElement.style.fontFamily = 'Verdana';
timeElement.style.fontSize = '12px';
timeElement.style.color = '#E25984';
timeElement.value = currentTime;
},1000);
</script>
</p>
<p class="pixel">ayy bee cee dee eee eff geee aech iii jay kay ell emm enn oh peee kyeww arr esss teee youu veee doubleyew exx why zee</p>
<label for="emailAddress">Enter your email address:</label>
<input type="email" id="emailAddress" required>
<button onclick="openEmail()">Open Email</button>
<script>
function openEmail() {
var emailAddress = document.getElementById('emailAddress').value;
// Check if email address is valid
if (!validateEmail(emailAddress)) {
alert('Please enter a valid email address.');
return;
}
var mailtoLink = 'mailto:' + emailAddress;
// Open email client
window.location.href = mailtoLink;
}
function validateEmail(email) {
// Regular expression for basic email validation
var re = /\S+@\S+\.\S+/;
return re.test(email);
}
</script>
<p id="but">
hilo
<svg viewBox="0 0 1024 1024" width="500" title="bomb">
<path d="M440.5 88.5l-52 52L415 167c9.4 9.4 9.4 24.6 0 33.9l-17.4 17.4c11.8 26.1 18.4 55.1 18.4 85.6 0 114.9-93.1 208-208 208S0 418.9 0 304 93.1 96 208 96c30.5 0 59.5 6.6 85.6 18.4L311 97c9.4-9.4 24.6-9.4 33.9 0l26.5 26.5 52-52 17.1 17zM500 60h-24c-6.6 0-12 5.4-12 12s5.4 12 12 12h24c6.6 0 12-5.4 12-12s-5.4-12-12-12zM440 0c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12s12-5.4 12-12V12c0-6.6-5.4-12-12-12zm33.9 55l17-17c4.7-4.7 4.7-12.3 0-17-4.7-4.7-12.3-4.7-17 0l-17 17c-4.7 4.7-4.7 12.3 0 17 4.8 4.7 12.4 4.7 17 0zm-67.8 0c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17zm67.8 34c-4.7-4.7-12.3-4.7-17 0-4.7 4.7-4.7 12.3 0 17l17 17c4.7 4.7 12.3 4.7 17 0 4.7-4.7 4.7-12.3 0-17l-17-17zM112 272c0-35.3 28.7-64 64-64 8.8 0 16-7.2 16-16s-7.2-16-16-16c-52.9 0-96 43.1-96 96 0 8.8 7.2 16 16 16s16-7.2 16-16z" />
</svg>
<kbd title="whaaaaaaaatttttttatatatttt">pop</kbd>
<script>
function showkey(e){
if(e.keyCode === 89 || e.keyCode === 121){
alert("HuH? OpOpoOoPoNJg gTRCvbJGHB")
}
}
document.onKeyDown = showkey
</script>
<div id=time></div>
</p>
<p class="lists">
<select name="orbz" class="pointy">
<optgroup label="🅢ꐇꌚꈼ꒻ ꂦꋖ ꐇꂦꐞ ꂠꋊꈼꌚ ꒒🅛ꂑꅏ 🅘 ?...ꈼꍩꋖ ꋖꁲꍩ🅦">
<option>Aye</option>
<option>Nay</option>
<option class="purplr">Oy!</option>
<option>Hey</option>
</optgroup>
</select>
<select name="zow!" class="pointy">
<optgroup label="Oranges">
<option>I</option>
<option>want</option>
<option>Some</option>
<option>!</option>
<option><img src="https://fontmeme.com/permalink/240514/bf55111af4d173f4f36b37ad9eaa53f2.png"></option>
</optgroup>
</select>
<select name="marchingpole" class="pointy">
<optgroup label="got em">
<option>Ha!</option>
<option>Got</option>
<option>Em!</option
</optgroup>
</select>
<select name="pointer" class="pointy">
<optgroup label="Alphabet">
<option>A</option>
<option>B</option>
<option>Z</option>
<option>An</option>
</optgroup>
</select>
<select name="poop" class="pointy">
<optgroup label="Cheese in the river">
<option value="UL">�̶̵̸̵̴̸̴̵̷̸̸̶̴̧̡̨̧̱͔̭͚͇̘̳͓̘̖̲̲̲̹͈͙̼̘̤͍̳̞͖͕̫̖͚̭̬̦̜̝͙̦̺̻̦̙͖͙͈̮͛̌͊̈́͛̊̀͒̃̃͋̏̀̃̿͑͗͛̅̍͋͆͐̽͌́͂̐͂͐̉̑͌̂̉̀͋͆͊́͗̋̇̉̿͒̊́̃̇̅̌͗̌͐̽͒͌̎̅͗̿̕̚͘̕͘͜͝͝͝͝͝͝͝ͅͅͅ�̷̷̷̷̶̶̴̶̸̷̷̶̶̸̴̷̷̶̶̵̨̢̧̨̧̢̢̢̛̛̛̛̖̥̠̳͉̪̹͎͚̹̞̮̘̩̝̠̘͚̥̺͔̙̳̣̬̯̰̙̩̞̹͚̥̦̥̩͖̠̱̪̞̹̥̜̪͉̪̙̖͕̫̖̳̞̱̼̲̝̱̭̰̙̰̗͇͙̰̙̝͕̜̦̥͓͖̺̦̟͉̭̳̪̳͇̻̲̯̗͙͇̥͖̺̳̳̟͚̰͉̣̣̬̹̳͈̭̺̝̠̞̹̻͎̤̉̏̾̑̓͑̄͊̃̑̽̍̑̓̊͗͋̂̓̓̐́̃̾̌̽̎̏͛̾̄̀͋̍̒̽͐͌͗̃̃̽̑͊̄̔̎͛̇̏̾̈̔̒͗̃͗̆̊̽͐̔̊̐̿̑̔̾͂̋̚͘̚͘͘̚̚̕͜͜͜͠͝͝͝ͅͅͅꐇ̶̴̵̴̵̸̵̵̷̸̵̴̷̷̵̷̷̴̢̧̡̨̡̡̡̢̢̛̛̛̰̖̘̖͉̟͎̺̠̬̩̞͕̦̜͇͕͖͖̣̪̼̤̤͚͉̯̩̳͙͕̙͇͈̟̫͇̝͍̰͚̼̫̱͙̫̞̪̫͎̤̣̩̣͉͎͍͚̻̹͙̘͉̱̞̼̜͎̖̠͇̜͚͓̼͇̰̎́͆̀̽͋͋͂̈́̎̈̾̏̓̒̌̃̆̾̈͑̏̆̾̒̂͛͗́̂͋̌̒̏͛̿̏̋̒́͋̎͂̇̓̿̌̐͆͌̿̅͋͑͌̒̄̎̊̋̑̀̎͑̏͗͌̄̔̓̐̅͛͘̚̕͘̕̕͜͜͜͜͝͠͠͠͝͝͠ͅͅͅꌚ̶̴̶̷̸̴̸̷̸̷̴̵̵̴̸̡̢̧̡̡̧̨̨̛̛͙̭̺̹̻̻̣̦̯̮̲̻̱̯͇͚̭̟̼̼͕͖̜̯̪͕͚͉̖͎̖̫͈̼͍͕͍̫͙̪̻͇̠̪͔̩̯̣̟̱̯̼̳̪̟̠̤̣̗̼̪̩̿̾̌̉̿͂̀͋̇̂͑̇͆̊̌̂͊̔̉͗̾́́̒̀̋́͂̈́͗̂̃̋͗̒̍̾͆͐̉̌̈̀̔̏̏̊̍̈̆͐̌̒͌͗̀̊̽̐̂̐̒̄̃̎̚͘̚͘͘̕͘̚͜͜͠͠͠͝͝͝ͅͅꈼ̴̴̷̷̵̸̵̶̷̴̷̴̸̢̢̡̢̢̡̡̡̨̛̼̜͎̝͇̬͍̣͖͖͖̙̖̘̙͈̻͕̱͍͍͓̭͈̠̫̲̭͚̣̘̥̞̱̖͔͓̭̺̞̜̪̭͎̖̰̟̬̻̮̦͖̞͓̟͖̖̘͓̟̮̘̺͙̠̟̦͇̱̦͉̺̩͕͚̮̩̰̰͈̪̜͎̞̙͇̽̈͆́̔̌̔̅̀͋̀̿̍̐̆̋͊̏͊̆̇͌͗̄̉̽̂͊́̂̂̔͒͌̒̒̐̐̾̒͑͊͐͌͘̕̚͜͝ͅͅ꒻̸̷̵̸̷̷̵̴̴̴̷̶̸̷̷̶̵̶̨̡̧̨̧̨̡̨̧̛̞̬̹̬̬̦̬̗̳͖͈̹̜̬͖̻̙͍̳͓̖͉͚̠̘̹̳͕̞̼̩̩̱͎̳͙̗̦̪͓̱̦̳̫̘̮̻̖̙̬̮͓̻̲͓͖̝̹͚͕̠̻̹̞̟̠̝̦̟͚̘͖͓̥̣̝̦̣͖͓̺̳̰̟̘̪̣̗̘̝͕̹̖͒̂͋̄̀́͗̍̊͂̈́̈̂̎̊̍̆́͒̋̃͒̈̊͒̉̃͛̃͌̆͒̂̂̐͊̾̎̔̌̈͛̇̓͗̎͋̍̐͒̿͑̐͆͗̑̋͗̇͊͐̆̉̓͒̊͒̀̽̈̿͛͘͘̕̕̚̕̚͘̕͠͝͝͠͝͝ͅͅ</option>
<option value="OL">Pizza</option>
<option value="DL">azziP</option>
</optgroup>
</select>
<select name="oppo" class="pointy">
<optgroup label="Where were the three blind men?">
<option value='UL'>Here</option>
<option value="OL">There</option>
<option value="DL">Up or backwards🍌</option>
</select>
</p>
<div class="poopsmeller">Hi :)</div>
<!--transitions-->
<div class="transition">S</div>
<div class="transition">A</div>
<div class="t1"></div>
<div class="ignition">B</div>
<div class="cube">
<div class="face1"></div>
<div class="face2"></div>
<div class="face3"></div>
<div class="face4"></div>
<div class="face5"></div>
<div class="face6"></div>
</div>
<a href="https://codepen.io/FRADAR/full/WNpWvZN">Click here for raging</a>
<p>
<div id="bord"><div id="perspective-attempt">PeRsPeCtIvE</div><div id="rect">0</div></div>
<div class="radial-repeat"></div>
<div class="linear-repeat"></div>
<details id="images"><summary>Signs</summary><p id="src"><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTumRCn7fYJcuaYL1ryfJNB_wgTF5r31f7ZvQ&usqp=CAU"><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS92P6PheUq4gRWn-bLSQVGq1bKvzsU7BgNyTXfFwJ_vK8FWpsdrHKbaOMaswUPvtCgLtQ&usqp=CAU">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQx6YszaC8l1CDGRv_mF4o5-nZgKcY7VIY_LA&usqp=CAU"><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRoCh0lPuaytMPPxgmhoY6VK4U-Qf6baUg-sotXgpnxniCyLeRARh3UgCewFkRTKECjBBk&usqp=CAU"><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQJHGsEyj1vsOW_UbH9pE6bd2wG7kVvEPrWPA&s"><img src="https://www.growtraining.com/wp-content/uploads/2017/06/fail18-e1496752479969.jpg"><img src="https://i.pinimg.com/564x/58/2f/a9/582fa9d0ecf0d54a14bdefa8ed12318f.jpg"><img src = "https://i.pinimg.com/236x/59/c6/fc/59c6fc6fe4b3a75493ea5c588127cb54.jpg"><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSIH1vKpxATEKXhpH-RzpgfR_EhpcPTIQt8ct71jwhkxt6X7a23JoT8u8sNdR6hupwrhDI&usqp=CAU"><img src="https://www.vappingo.com/word-blog/wp-content/uploads/2012/06/Bad-translations-9.jpg"><img src="https://www.bartush.com/wp-content/uploads/2018/09/Dont-flush-sign.jpg"><img src="https://img.rasset.ie/0000d338-1600.jpg"><img src="https://smallbiztrends.com/ezoimgfmt/media.smallbiztrends.com/2022/05/985fd30f-365a-4b61-a36a-e384a86e21c2-518x375.png?ezimgfmt=rs:345x252/rscb12/ngcb12/notWebP"><img src="https://www.boredpanda.com/blog/wp-content/uploads/2023/04/22-Of-The-Funniest-Sign-Fails-You-Wont-Believe-Actually-Happened-644a776071c25__700.jpg"><img src="https://cdn.ebaumsworld.com/mediaFiles/picture/1961176/81679907.jpg">
<img src="https://www.gstatic.com/android/keyboard/emojikitchen/20230301/u1f60f/u1f60f_u1f60f.png?fbx"><img src="https://www.lisdeoliveira.com.br/wp-content/uploads/2019/02/Sign-8-e1544100105382.jpg"><img src="https://transformaonline.com/wp-content/uploads/2018/08/KFC-eat-your-fingers-off.png"><img src="https://en.bcdn.biz/Images/2021/4/18/ba1ad642-4def-4737-9b28-c7524b61ca96.jpg">
</p>
</details>
<aside>
<img src="https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.svgrepo.com%2Fsvg%2F158837%2Fcircle&psig=AOvVaw3WQubJjljBKxBdDZQakZzu&ust=1708800923087000&source=images&cd=vfe&opi=89978449&ved=0CBMQjRxqFwoTCOjb9NGRwoQDFQAAAAAdAAAAABAN" alt="O">
</aside>
</body>
<footer>
<p class="crosshair-cursor">. . .
</p>
<a href="https://fitnessgram.net/pacertest/">                                           hell </a>
<style>/*All CSS here*/
html {
height: 100%;
width: 100%;
background-color: #9874cd;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='152' height='152' viewBox='0 0 152 152'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='temple' fill='%23faffbb' fill-opacity='0.4'%3E%3Cpath d='M152 150v2H0v-2h28v-8H8v-20H0v-2h8V80h42v20h20v42H30v8h90v-8H80v-42h20V80h42v40h8V30h-8v40h-42V50H80V8h40V0h2v8h20v20h8V0h2v150zm-2 0v-28h-8v20h-20v8h28zM82 30v18h18V30H82zm20 18h20v20h18V30h-20V10H82v18h20v20zm0 2v18h18V50h-18zm20-22h18V10h-18v18zm-54 92v-18H50v18h18zm-20-18H28V82H10v38h20v20h38v-18H48v-20zm0-2V82H30v18h18zm-20 22H10v18h18v-18zm54 0v18h38v-20h20V82h-18v20h-20v20H82zm18-20H82v18h18v-18zm2-2h18V82h-18v18zm20 40v-18h18v18h-18zM30 0h-2v8H8v20H0v2h8v40h42V50h20V8H30V0zm20 48h18V30H50v18zm18-20H48v20H28v20H10V30h20V10h38v18zM30 50h18v18H30V50zm-2-40H10v18h18V10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
pre.Text-Art {
}
div.title {
position: absolute;
right: 600 ;
top:0;
}
select.pointy {
background-color: red ;
border : 100px forestgreen;
color: lawngreen ;
}
/* <uniquifier> Use a unique and descriptive class name*/
p.nabla-Protaton {
font-family: "Nabla", system-ui;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-variation-settings:
"EDPT" 110,
"EHLT" 12;
}
button.Emperor {
background-color:gold;
}
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap')
/* <uniquifier>: Use a unique and descriptive class name*/
div.src {
width: 500px ;
height: 500px ;
}
div.images {
/*overflow*/
overflow-x : hidden ;
overflow-y : scroll ;
}
.Text-Art {
font-family: "Noto Sans Mono", monospace;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-variation-settings:
"wdth" 100;
}
p.crosshair-cursor{cursor : crosshair ; border: 20px solid darkOrange ; height : 60px;}
div.radial.repeat {width: 20px ; height : 20px ; border: 10px dashed black; background: orange}
div.radial-repeat {background-image: repeating-radial-gradient(darkred 1%, maroon 1%, darkred 1%, crimson 1%, red 1%, orangered 1%, tomato 1%, orange 1%, darkorange 1%, yellow 1%, gold 1%, yellowgreen 1%, lime 1%, green 1%, darkgreen 8%, teal 1%, cyan 1%, skyblue 1%, blue 8%, darkblue 4%, indigo 1%); background-size : 100% 100% ; background-repeat : no-repeat ; }
.radial-repeat {
height: 200px ;
width: 200px;
}
div.rotate { border: 30px solid transparent ; }
div.rotate {border-image: repeating-linear-gradient(34deg, darkBlue, Blue, steelblue, lightskyblue, steelblue, blue 20%)33%;}
div.linear-repeat {
height: 300px ;
width: 300px ;
}
div.linear-repeat {
background: repeating-linear-gradient(24deg, #3f87a6, #ebf8e1 7%, #f69d3c 9%);}
.pixel {
font-family: "Micro 5", sans-serif;
font-weight: 400;
font-style: normal;
}
#perspective-attempt {
width:200px;
height:200px;
background-color: orange ;
border: 1px solid black ;
transform: perspective(400px) rotateY(50deg);
}
#rect {
margin: 60px ;
width: 600px ;
height: 150px ;
background: linear-gradient(135deg, crimson, yellow, lightgoldenrodyellow);
border: 1px solid Black ;
transform: perspective(300px) rotateY(30deg) rotateX(20deg) rotateZ(-30deg);
}
div.scale {Border: 30px solid transparent ; }
div.scale{border-image: repeating-linear-gradient(-33deg,darkRed,Crimson,red,orangered, red, Crimson 20%)33% ;}
div.skew{border : 30px solid transparent ; height: 100px ;
width: 100px ;}
div.skew{border-image : repeating-linear-gradient(42deg, green, forestgreen, seagreen, limegreen, lime, chartreuse, lime, limegreen, seagreen, forestgreen 20%)33% ; }
/*transitions*/
div.transition {
margin:50px;padding:15px;color: white;font:1.5em sans-serif;background:Orange;width:100px;height: 30px;border: 1px solid Black ;
}
div.transition {transition: background 5s linear 0.5s,
width 5s ease-out 0.5s ,
height 5s steps(100) 0.5s ;}
div.transition:hover{
background: crimson;
width: 30px ; height:100px;
cursor: progress ;
}
select.pointy{
cursor: pointer ;
}
select.pointy{
background: black ;
}
article.zipurpleonsuper{
background: purple ;
}
a.href1{
text-decoration: none ;
color:black;
cursor:default;
}
button.explodey {
color: red ;
background-color: yellow ;
}
@keyframes example {
0% {background-color: red;}
10% {background-color: orangered;}
20% {background-color: orange;}
30% {background-color: yellow;}
40% {background-color: gold;}
50% {background-color: green;}
60% {background-color: blue;}
70% {background-color: indigo;}
80% {background-color: violet;}
90% {background-color: purple;}
100% {background-color: crimson;}
}
div.scale {
width: 100px;
height: 100px;
background-color: red;
animation-name: example;
animation-duration: 4s;
animation-iteration-count: infinite;
animation-direction: alternate-reverse;
}
div.rotate {
width: 100px;
height: 100px;
background-color: red;
animation-name: example;
animation-duration: 4s;
animation-iteration-count: infinite;
animation-direction: alternate-reverse;
}
div.skew {
width: 100px;
height: 100px;
background-color: red;
animation-name: example;
animation-duration: 4s;
animation-iteration-count: infinite;
animation-direction: alternate-reverse;
}
div.rotate{
font: 1.5em sans-serif ; text-align: center ;
}
div.scale{
font: 1.5em sans-serif ; text-align: center ;
}
div.skew{
font: 1.5em sans-serif ; text-align: center ;
}
input.clock {
color: white ;
background: linear-gradient(90deg , darkgreen, green, forestgreen, seagreen, limegreen, lime, darkseagreen);
position: fixed ;
right: 0 ;
top: 0 ;
display: block;
font-size: 2em ;
}
input.txet {
background-color: orange ;
color: blue ;
transform: perspective(-50px) rotateX(1deg) rotateY(12deg);
}
#myProgress {
width: 100%;
background-color: grey;