-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path!ASP.NET_HOME.html
1168 lines (1166 loc) · 31.6 KB
/
!ASP.NET_HOME.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
<!-- Start of script !-->
<!DOCTYPE html>
<HTML>
<HEAD>
<META lang="en">
<meta charset="UTF-16"><!-- The Encoding should be declared within the first 1024 bytes of an HTML document. If not, most browsers won't accept it, and it could result in garbled/Mojibaked text. The declaration here was made and finished within the first 151 characters/bytes of the document !-->
<!-- Other options !-->
<!-- meta charset="ANSI"> !--> <!-- page encoding minimum !-->
<!-- meta charset="ASCII"> !--> <!-- page encoding !-->
<!-- meta charset="UC-2"> !--> <!-- page encoding !-->
<!-- meta charset="UTF-8"> !--> <!-- page encoding !-->
<!--<meta charset="UTF-16"> !--> <!-- Page encoding main !-->
<!-- meta charset="UTF-32"> !--> <!-- page encoding !-->
<meta lang="en" name="viewport" content="width=device-width, initial-scale=1.0"><!-- Viewport detection for average computer, and mobile !-->
<meta lang="en" name="description" content="Welcome to the SNU programming center for ASP.NET programming"><!-- Description search engines display when searching the site via search !-->
<meta lang="en" name="keywords" content="SNU, ASP.NET, Programming, SNU_Programming_Tools, Keyword5, Keyword6, Keyword7, Keyword8"><!-- Search keywords (don't put too many, anywhere between 1 and 8 is fine) !-->
<meta lang="en" name="author" content="Sean Patrick Myrick/SeanPM, SeanWallWalla/SNU, SNU.net, SNU">
</META>
<!-- End of Metadata !-->
<!-- Language tags
en = English
ar = Arabic
fr = French
ru = Russian
de = German
es = Spanish
ja = Japanese
zh = Chinese
ko = Korean
la = Latin
it = Italian
haw = Hawaiian
More coming soon
!-->
<link rel="icon" href="SNU_ASP.NET_PROGRAMMING_FAVICON.ico" type="image/x-icon">
<TITLE lang="en">ASP.NET programming home - SNU Programming</TITLE>
</HEAD>
<!-- Stylesheet 1 !-->
<style type="text/css" lang="en">
/* Inline stylesheet #1 */
/* The CSS Grid system inline stylesheet */
/* Rule count: 2 */
.grid-container { /* Rule 1 */
display: grid;
grid-column-gap: 50px;
grid-template-columns: auto auto auto;
background-color: #2196F3;
padding: 10px;
} /* End of rule 1 */
.grid-item { /* Rule 2 */
background-color: rgba(255, 255, 255, 0.8);
border: 1px solid rgba(0, 0, 0, 0.8);
padding: 20px;
font-size: 30px;
text-align: center;
} /* End of rule 2 */
/* Stylesheet version: 2 (February 16th 2020) */
</style>
<!-- Stylesheet 2 !-->
<style type="text/css" lang="en">
/* Inline stylesheet #2 */
/* The CSS Transparent box inline stylesheet */
/* Rule count: 3 */
div.background { /* Rule 1 */
background: url(klematis.jpg) repeat;
border: 2px solid black;
} /* End of rule 1 */
div.transbox { /* Rule 2 */
margin-top: 0px;
margin-bottom: 0px;
margin-right: 0px;
margin-left: 0px;
background-color: #00BFFF; /* The text was there, the background was the wrong color. A new beautiful shade of blue was added to fix this - April 6th 2019 */
border: 1px solid black;
opacity: 0.6;
filter: alpha(opacity=80); /* For IE8 and earlier */
} /* End of rule 2 */
div.transbox p { /* Rule 3 */
margin: 1%; /* make sure this stays at 1%. At 5%, there is a large spacing issue between each new paragraph */
font-weight: bold;
color: #ffffff;
} /* End of rule 3 */
/* Stylesheet version: 2 (February 16th 2020) */
</style>
<!-- Stylesheet 3 /!-->
<style type="text/css" lang="en">
/* Inline stylesheet #3 */
/* The CSS Sidebar inline stylesheet */
/* Rule count: 5 */
body { /* Rule 1 */
margin: 0;
} /* End of rule 1 */
ul { /* Rule 2 */
list-style-type: none;
margin: 0;
padding: 0;
width: 16%;
background-color: #f1f1f1;
position: fixed;
height: 100%;
overflow: auto;
} /* End of rule 2 */
li a { /* Rule 3 */
display: block;
color: #000;
padding: 8px 16px;
text-decoration: none;
} /* End of rule 3 */
li a.active { /* Rule 4 */
background-color: #4CAF50;
color: white;
} /* End of rule 4 */
li a:hover:not(.active) { /* Rule 5 */
background-color: #555;
color: white;
} /* End of rule 5 */
/* Stylesheet version: 2 (February 16th 2020) */
</style>
<!-- Stylesheet 4 !-->
<style type="text/css" lang="en">
/* Inline stylesheet #4 */
/* The CSS Topbar (Top navigation bar) Inline stylesheet */
/* Add a black background color to the top navigation */
/* Rule count: 7 */
.topnav { /* Rule 1 */
background-color: #333;
overflow: hidden;
} /* End of rule 1 */
/* Style the links inside the navigation bar */
.topnav a { /* Rule 2 */
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
} /* End of rule 2 */
/* Change the color of links on hover */
.topnav a:hover { /* Rule 3 */
background-color: #ddd;
color: black;
} /* End of rule 3 */
/* Add a color to the active/current link */
.topnav a.active { /* Rule 4 */
background-color: #4CAF50;
color: white;
} /* End of rule 4 */
/* Dropdown */
.dropdown { /* Rule 5 */
position: relative;
display: inline-block;
} /* End of rule 5 */
.dropdown-content { /* Rule 6 */
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
padding: 12px 16px;
z-index: 1;
} /* End of rule 6 */
.dropdown:hover .dropdown-content { /* Rule 7 */
display: block;
} /* End of rule 7 */
/* Things to experiment with:
* dropdown on overflow
* Different colors
* Stable white colored links again on topbar
*/
/* Stylesheet version: 2 (February 16th 2020) */
</style>
<!-- Stylesheet 5 !-->
<style type="text/css" lang="en">
/* Inline stylesheet #5 */
/* The CSS headings inline stylesheet */
/* H1 to H6, no h1-h6, and no h06, H06 */
/* Rule count: 6 */
H1 { /* Rule 1 */
color: white;
font-family: "Liberation Serif";
/*
font-size: 15px;
font-size: large;
font-size: 150%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 1 */
H2 { /* Rule 2 */
color: white;
font-family: "Liberation Serif";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 2 */
H3 { /* Rule 3 */
color: white;
font-family: "Liberation Serif";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 3 */
H4 { /* Rule 4 */
color: white;
font-family: "Liberation Serif";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 4 */
H5 { /* Rule 5 */
color: white;
font-family: "Liberation Serif";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 5 */
H6 { /* Rule 6 */
color: white;
font-family: "Liberation Serif";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 6 */
/* Decisions:
* Should h1-h6 and h06/H06 be included? (for the webtemplate developer to decide)
* Should this page use white text, or a different color (for the programmer to decide)
* Should these tags use the Liberation Serif font (for the programmer to decide)
*/
/* Stylesheet version: 2 (February 16th 2020) */
</style>
<!-- Stylesheet 6 !-->
<style type="text/css" lang="en">
/* Inline stlyesheet #6 */
/* The CSS Dividers, and paragraphs inline stylesheet */
/* Rule count: 2 */
HR { /* Rule 1 */
color: black;
font-family: "Liberation Serif";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 1 */
p { /* Rule 2 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 2 */
</style>
<!-- Stylesheet 7 !-->
<style type="text/css" lang="en">
/* Inline stlyesheet #7 */
/* The CSS Other rich text inline stylesheet */
/* Rule count: 6 */
i { /* Rule 1 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 1 */
u { /* Rule 2 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 2 */
b { /* Rule 3 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 3 */
s { /* Rule 4 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 1 */
sub { /* Rule 5 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 5 */
sup { /* Rule 6 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 6 */
/* Stylesheet version: 2 (February 16th 2020) */
</style>
<!-- Stylesheet 8 !-->
<style type="text/css" lang="en">
/* Inline stylesheet #8 */
/* The CSS Details and summary inline stylesheet */
/* Rule count: 2 */
details { /* Rule 1 */
color: black;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 1 */
summary { /* Rule 2 */
color: black;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 2 */
/* Stylesheet version: 2 (February 16th 2020) */
</style>
<!-- Stylesheet 9 !-->
<style type="text/css" lang="en">
/* Inline stylesheet #9 */
/* The CSS Progress bar inline stylesheet */
/* Rule count: 12 */
/* Option 1 */
progress { /* Rule 1 */
display:inline-block;
width:190px;
height:20px;
padding:15px 0 0 0;
margin:0;
background:none;
border: 0;
border-radius: 15px;
text-align: left;
position:relative;
font-family: Arial, Helvetica, sans-serif;
font-size: 0.8em;
} /* End of rule 1 */
progress::-webkit-progress-bar { /* Rule 2 */
height:11px;
width:150px;
margin:0 auto;
background-color: #CCC;
border-radius: 15px;
box-shadow:0px 0px 6px #777 inset;
} /* End of rule 2 */
progress::-webkit-progress-value { /* Rule 3 */
display:inline-block;
float:left;
height:11px;
margin:0px -10px 0 0;
background: #F70;
border-radius: 15px;
box-shadow:0px 0px 6px #777 inset;
} /* End of rule 3 */
progress:after { /* Rule 4 */
margin:-26px 0 0 -7px;
padding:0;
display:inline-block;
} /* End of rule 4 */
/* Option 2 */
#progress { /* Rule 5 */
background: #333;
border-radius: 13px;
height: 20px;
width: 300px;
padding: 3px;
} /* End of rule 5 */
#progress:after { /* Rule 6 */
content: '';
display: block;
background: orange;
width: 50%;
height: 100%;
border-radius: 9px;
} /* End of rule 6 */
/* Option 3 */
#progressbar { /* Rule 7 */
background-color: black;
border-radius: 13px;
/* (height of inner div) / 2 + padding */
padding: 3px;
} /* End of rule 7 */
#progressbar>div { /* Rule 8 */
background-color: orange;
width: 40%;
/* Adjust with JavaScript */
height: 20px;
border-radius: 10px;
} /* End of rule 8 */
/* Option 4 */
/* Step 1 */
progress, /* All HTML5 progress enabled browsers */
{ /* Rule 9 */
/* Turns off styling - not usually needed, but good to know. */
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
} /* End of rule 9 */
/* Step 2 */
/* IE10 */
progress { /* Rule 10 */
color: black;
} /* End of rule 10 */
/* Firefox */
progress::-moz-progress-bar { /* Rule 11 */
background: black;
} /* End of rule 11 */
/* Chrome */
progress::-webkit-progress-value { /* Rule 12 */
background: black;
} /* End of rule 12 */
/* Step 3 */
progress[value^="9"]::-moz-progress-bar { /* Rule 13 */
background-color : red;
} /* End of rule 13 */
/* One of these doesn't seem to be getting counted as a rule. Firefox counts 12, but I count 13. I may have made an error somewhere. */
/* Stylesheet version: 2 (February 16th 2020) */
</style>
<!-- Stylesheet 10 !-->
<style type="text/css" lang="en" lang="en">
/* Inline stylesheet #10 */
/* The CSS Rich text section 2 inline stylesheet */
/* Rule count: 14 */
p { /* Rule 1 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 1 */
P { /* Rule 2 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 2 */
b { /* Rule 3 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 3 */
B { /* Rule 4 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 4 */
u { /* Rule 5 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 5 */
U { /* Rule 6 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 6 */
s { /* Rule 7 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 7 */
S { /* Rule 8 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 8 */
i { /* Rule 9 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 9 */
I { /* Rule 10 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 10 */
sub { /* Rule 11 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 11 */
SUB { /* Rule 12 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 12 */
sup { /* Rule 13 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 13 */
SUP { /* Rule 14 */
color: white;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 14 */
/* Stylesheet version: 2 (February 16th 2020) */
</style>
<!-- Stylesheet 11 !-->
<style type="text/css" lang="en">
/* Inline stylesheet #11 */
/* The CSS Form section inline stylesheet */
/* Rule count: 4 */
form { /* Rule 1 */
color: white;
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 1 */
FORM { /* Rule 2 */
color: white;
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 2 */
/* specialized button hyperlink section */
a { /* Rule 3 */
color: green;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 3 */
A { /* Rule 4 */
color: green;
font-family: "Tahoma";
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 4 */
/* Stylesheet version: 2 (February 16th 2020) */
</style>
<!-- Stylesheet 12 !-->
<!--
Notice: this section has been commented out due to a critical bug found on April 6th 2020. I have been trying to figure out why videos haven't been able to load in SourceBase, and last night, I did some experimentation, and found this was the cause.
You can remove the commenting tags, but then the page will only be WebGL capable, and all videos will not show up in the page. I will be looking into why it is doing this in the future
!--><!--
<style type="text/css" lang="en">
/* Inline stylesheet #12 */
/* The CSS WebGL compatibility layer inline stylesheet */
/* Rule count: 11 */
canvas { /* Rule 1 */
border: 2px solid black;
background-color: black;
} /* End of rule 1 */
video { /* Rule 2 */
display: none;
} /* End of rule 2 */
/* Gallery */
div.gallery { /* Rule 3 */
border: 1px solid #ccc;
} /* End of rule 3 */
div.gallery:hover { /* Rule 4 */
border: 1px solid #777;
} /* End of rule 4 */
div.gallery img { /* Rule 5 */
width: 100%;
height: auto;
} /* End of rule 5 */
div.desc { /* Rule 6 */
padding: 15px;
text-align: center;
} /* End of rule 6 */
* { /* Rule 7 */
box-sizing: border-box;
} /* End of rule 7 */
.responsive { /* Rule 8 */
padding: 0 6px;
float: left;
width: 24.99999%;
} /* End of rule 8 */
@media only screen and (max-width: 700px) { /* Rule 9 */
.responsive {
width: 49.99999%;
margin: 6px 0;
}} /* End of Rule 9 */
@media only screen and (max-width: 500px) { /* Rule 10 */
.responsive {
width: 100%;
}} /* End of rule 10 */
.clearfix:after { /* Rule 11 */
content: "";
display: table;
clear: both;
} /* End of rule 11 */
/* Stylesheet version: 2 (February 16th 2020) */
</style>
!-->
<!-- Stylesheet 13 !-->
<style type="text/css" lang="en">
/* Inline stylesheet #13 */
/* The CSS Border image inline stylesheet */
/* Rule count: 1 */
#borderimg { /* Rule 1 */
border: 10px solid transparent;
padding: 15px;
border-image: url(border.png) 30 round;
} /* End of rule 1 */
/* Stylesheet version: 2 (February 16th 2020) */
</style>
<!-- Stylesheet 14 !-->
<style type="text/css" lang="en">
/* Inline stylesheet #14 */
/* The CSS Scriscript inline stylesheet */
/* Rule count: 4 */
/* Scripting tags - syntax highlights for various languages, testing with Python 3 syntax */
scri-none { /* Rule 1 */ /* Scri-none stands for non-identified script syntax. This text should show black if something is not written correctly, such as PRiNT instead of print */
font-family: "courier";
color: black;
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 1 */
scri-blue1 { /* Rule 2 */
font-family: "courier";
color: blue;
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 2 */
scri-string1 { /* Rule 3 */
font-family: "courier";
color: silver;
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 3 */
scri-comment1 { /* Rule 4 */
font-family: "courier";
color: green;
/*
font-size: 12.5px;
font-size: medium;
font-size: 125%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 4 */
/* Stylesheet version: 2 (February 16th 2020) */
</style>
<!-- Stylesheet 15 !-->
<style type="text/css" lang="en">
/* Inline srylesheet #15 */
/* The CSS default phrase tag inline stylesheet */
/* Rule count: 6 */
/* Start of script */
/* Default phrase tag CSS */
/* Contains the default CSS for the default 6 HTML5 phrase tags */
/* Tag list:
1 | kbd (keyboard input)
2 | em (emphasized text) (not to be confused with the pixel measurement metric (1em = 16px)
3 | strong (strong text)
4 | code (computer code/script)
5 | var (variable (text))
6 | samp (sample output)
*/
/* Start of tag list */
/* KBD (Keyboard input) */
kbd { /* Rule 1 */
font-family: monospace;
} /* End of rule 1 */
/* HTML Sample:
---
<kbd>Keyboard input</kbd>
---
*/
/* EM (Emphasized text) */
em { /* Rule 2 */
font-style: italic;
} /* End of rule 2 */
/* HTML Sample:
---
<em>Emphasized text</em>
---
*/
/* STRONG (ttrong text) */
strong { /* Rule 3 */
font-weight: bold;
} /* End of rule 3 */
/* HTML Sample:
---
<em>Emphasized text</em>
---
*/
/* CODE (Computer code/script) */
code { /* Rule 4 */
font-family: monospace;
} /* End of rule 4 */
/* HTML Sample:
---
<code>A piece of computer code</code>
---
*/
/* VAR (Variable (text)) */
var { /* Rule 5 */
font-style: italic;
} /* End of rule 5 */
/* HTML Sample:
---
<var>Variable</var>
---
*/
/* SAMP (Sample output) */
samp { /* Rule 6 */
font-family: monospace;
} /* End of rule 6 */
/* HTML Sample:
---
<samp>Sample output from a computer program</samp>
---
*/
/* End of tag list */
/* File version history
V1: Created January 1st 2020
*/
/* File info (obsolete, no longer updated):
Size: 01,.366 bytes (01,.366 Kilobytes)
Line count: 077
Language: CSS3 (Cascade Style Sheets)
Line indenting: UNIX(LF)
Encoding: UTF-8 (With no UTF-8 characters)
/* End of script */
/* Stylesheet version: 2 (February 16th 2020) */
</style>
<!-- Stylesheet 16 !--><style type="text/css">
/* Inline stylesheet #16 */
/* The CSS Blockquote inline stylesheet */
/* Rule count: 1 */
blockquote { /* Rule 1 */
display: block;
margin-top: 1em;
margin-bottom: 1em;
margin-left: 40px;
margin-right: 40px;
color: white;
} /* End of rule 1 */
/* Stylesheet version: 2 (February 16th 2020) */
</style>
<!-- Stylesheet 17 !-->
<style type="text/css" lang="en">
/* Inline stylesheet #17 */
/* The CSS blank divider inline stylesheet */
/* Rule count: 1 */
HR.blank { /* Rule 1 */
border: 10px solid navy;
border-radius: 5px;
} /* End of rule 1 */
/* Experiment, and add in different colors of blank headings */
/* Stylesheet version: 2 (February 16th 2020) */
</style>
<!-- Stylesheet 18 !-->
<style type="text/css" lang="en">
/* The hyperlink stylesheet (the <a href> </a> tag) *********/
/* It would be nice to be able to name internal stylesheets */
/* Rule count: 5 */
/* Default link (for basic settings, and if all else fails) */
a { /* Rule 1 */
color: blue;
font-family: "Times New Roman"; /* Don't switch back to Courier without reducing font size */
/*
font-size: 15px;
font-size: large;
font-size: 150%
*/
text-shadow: 0px 0px #000000;
} /* End of rule 1 */
/* Unvisited link */
a:link { /* Rule 2 */
color: blue;
} /* End of rule 2 */
/* Visited link */
a:visited { /* Rule 3 */
color: purple;
} /* End of rule 3 */
/* Mouse over link */
a:hover { /* Rule 4 */
color: cyan;
} /* End of rule 4 */
/* Selected link (mouse-hold, touch-hold) */
a:active { /* Rule 5 */
color: white;
} /* End of rule 5 */
/* What we need:
* a:dead (for dead links/404 pages)
* a:visitedhover (for hovering over visited links)
*/
/* Future things to experiment with
* Sounds
* Glowing
* Exclusion from sidebar and top navigation bar (topbar)
*/
/* End of the Hyperlink stylesheet */
/* Forked from The SNU Update Log Snapshot323 (February 15th 2020, V2) */
/* Stylesheet version: 3 (February 16th 2020) */
</style>
<!-- End of stylesheets !-->
<?php
// PHP section
// "Echo"
echo ("Hello World"); // Output: Hello World
/* Or
* "Print"
*/
print ("Hello World"); // Output: Hello World
// Variable list
$piSimple = "3.14";
$HelloWorldStr = "Hello World";
$HelloworldStr = "Hello world";
$Int2__16 = "65536"; // My #1 memorized power of 2
$Power2_16 = "65536";
// End of variable list
// Var list
var x = 0; // X Coordinate
var y = 0; // Y Coordinate
var z = 0; // Z Coordinate
var a = 0; // A Coordinate [4D MODE ONLY]
// End ov Var list
// Int list
int testInt1 = "101";
// End of int list
// float list
float decimal1 = "1.01";
// End of float list
// End of PHP section
?>
<script type="text/JavaScript" lang="en">
// Start of script
// Start of page JavaScript console
console.log("SNU web console for [browser]");
console.log("The [section] console");
console.log(">>>");
// End of page JavaScript console
// End of script
</script>
<script type="text/JavaScript" lang="en" id="CSSRuleCountScript">
// CSS rule count script
inlineStyShe1 = 2; // Rule count for Inline Stylesheet 1
inlineStyShe2 = 3; // Rule count for Inline Stylesheet 2
inlineStyShe3 = 5; // Rule count for Inline Stylesheet 3
inlineStyShe4 = 7; // Rule count for Inline Stylesheet 4
inlineStyShe5 = 6; // Rule count for Inline Stylesheet 5
inlineStyShe6 = 2; // Rule count for Inline Stylesheet 6
inlineStyShe7 = 6; // Rule count for Inline Stylesheet 7
inlineStyShe8 = 2; // Rule count for Inline Stylesheet 8
inlineStyShe9 = 12; // Rule count for Inline Stylesheet 9
inlineStyShe10 = 1; // Rule count for Inline Stylesheet 10
inlineStyShe11 = 4; // Rule count for Inline Stylesheet 11
inlineStyShe12 = 11; // Rule count for Inline Stylesheet 12
inlineStyShe13 = 1; // Rule count for Inline Stylesheet 13
inlineStyShe14 = 4; // Rule count for Inline Stylesheet 14
inlineStyShe15 = 6; // Rule count for Inline Stylesheet 15
inlineStyShe16 = 1; // Rule count for Inline Stylesheet 16
inlineStyShe17 = 1; // Rule count for Inline Stylesheet 17
inlineStyShe18 = 5; // Rule count for Inline Stylesheet 18
inlineCount = (inlineStyShe1 + inlineStyShe2 + inlineStyShe3 + inlineStyShe4 + inlineStyShe5 + inlineStyShe6 + inlineStyShe7 + inlineStyShe8 + inlineStyShe9 + inlineStyShe10 + inlineStyShe11 + inlineStyShe12 + inlineStyShe13 + inlineStyShe14 + inlineStyShe15 + inlineStyShe16 + inlineStyShe17 + inlineStyShe18);
console.log("CSS rule count:\nInline: " + inlineCount + " \nExternal: Coming soon");
console.log("Inline count");
console.log("Inline stylesheet 1: " + inlineStyShe1 + " ");
console.log("Inline stylesheet 2: " + inlineStyShe2 + " ");
console.log("Inline stylesheet 3: " + inlineStyShe3 + " ");
console.log("Inline stylesheet 4: " + inlineStyShe4 + " ");
console.log("Inline stylesheet 5: " + inlineStyShe5 + " ");
console.log("Inline stylesheet 6: " + inlineStyShe6 + " ");
console.log("Inline stylesheet 7: " + inlineStyShe7 + " ");
console.log("Inline stylesheet 8: " + inlineStyShe8 + " ");
console.log("Inline stylesheet 9: " + inlineStyShe9 + " ");