-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmyhtml.html
More file actions
2261 lines (1544 loc) · 54.5 KB
/
myhtml.html
File metadata and controls
2261 lines (1544 loc) · 54.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
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>
<head>
<title>MY FIRST PAGE</title>
<link rel="stylesheet" type="text/css" href="stysheet.css"> <!-- CONFUSED -->
<!--
<script type="text/javascript">
alert("Hi there!");
</script>
-->
<script type="text/javascript" src="myjsfile.js"></script>
<input onchange="go(this)"></input>
<script>
function go(e) {
eval(e.value);
}
</script>
<!--This creates an input field.
When the user changes its value (e.g. types something and presses Enter or clicks away), it calls the go(this) function and passes the input element (this) as an argument.
This defines a function go that takes the input element e.
e.value is the text the user typed.
eval(e.value) will execute that text as JavaScript code.-->
</head>
<body>
<div id="header">
this is basic file<br />breaked a line
</div>
<div id="middle">
<h1>heading 1</h1>
<h2>heading 2</h2>
<p>paragraph</p>
</div>
<p style="font-family:'Courier New', Courier, monospace">paragraph style</p>
<P style="font-family:'Times New Roman', Times, serif">PARA STYLE 2</P>
<strong>stronggg</strong>
<em>emphasis</em>
<p>2 < 3 & 5 > 4 ©</p>
<!-- COMMENTS LETS GO-->
<!--
<style type="text/css">
h1{font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size:20px;}
h2 {color:blue}
</style> -->
<a name="top">top</a>
<p style="color: #00ffff">hex rgb</p>
<p style="color: #0ff">offf</p>
<p style="color: rgba(193, 225, 11, 0.637)">brac rgb</p>
<p style="color: rgb(0%,100%,50%)">perc rgb</p>
<div class="transparentbox">
some text i wrote..
</div>
<p style="text-indent: 2cm">indenting a paragraph</p>
<pre>
x 0 x 0
0 x 0 x
</pre>
<blockquote>hello guys</blockquote>
<p>Campers sleep in cabins that hold 10-12 people, including 2 college-age
counselors. The girls’ cabins all have showers and toilets, whereas the boys
share a latrine.</p>
<blockquote>Would you like to see a video clip of a cabin? The cabin shown is
called "Manana" and usually houses the oldest girls.</blockquote>
<p>Each summer, campers, ages 12-18, come from all over the world to spend 3
or 6 weeks at Chop Point. In recent years, we have had campers from foreign
countries such as Italy, Switzerland, France, Canada, Mexico, Puerto Rico,
Japan, Germany, Ireland and Brazil (just to name a few).</p>
<p>hello everyone</p>
<hr />
<p>i m down</p>
<p style="border-style:solid; border-bottom-width:20px; border-color: rgb(256, 192, 0,1); ">COPYRIGHT WARNING</p>
<p style="text-align: right;">CHOP POINT is a summer camp devoted
to teenagers that combines a strong residential camping program
with the excitement of an adventurous trip program. Each summer, 80
teenagers between the ages of twelve and eighteen come to Chop Point
from all over the world to have one of the best summers of their
lives. The camp is located two hours up the Maine coast in the town
of Woolwich. The property includes 50 wooded acres of land at the end
of a peninsula, and a mile of shoreline on picturesque and historic
Merrymeeting Bay, along the Kennebec River.</p>
<p style="text-align: center;">Buildings include a dining hall, a
lodge, two homes, eight cabins, and a boathouse. The boathouse was
renovated into a Library and Learning Center, housing staff and
computers in the summer. Chop Point also has a full size athletic
field, tennis courts, basketball courts, a volleyball court, a
gymnasium, and a well-equipped waterfront facility.</p>
<p style="text-align: justify;">We firmly believe our greatest asset
is our top-notch staff. Sixteen counselors, having completed at least
a year of college, come from throughout the world. They bring their
skill, enthusiasm and love of teenagers to camp, and strive to be a
genuine friend to each camper.</p>
<div id="CampDescription">
<p>Paragraph 1</p>
<p>Paragraph 2</p>
<p>Paragraph 3</p>
</div>
<pre>
<abbr> Indicates an abbreviation. Not displayed in graphical browsers
(each letter is spoken in audio browsers)</abbr>
<acronym> Indicates an acronym. Not displayed in graphical browsers
(each letter is spoken in audio browsers)</acronym>
<cite> Marks a reference to another source or a short
quotation.</cite>
Italic
<code> Displays a code example. Monospace font (such as Courier)</code>
<dfn> Highlights a definition or defined term. Italic</dfn>
<em> Provides general emphasis. Italic</em>
<kbd> Identifies text a user will enter (kbd is short for
keyboard).</kbd>
Monospace font (such as Courier)
<samp> Describes sample text or code, typically output
from a program.</samp>
Monospace font (such as Courier)
<strong> Provides a stronger general emphasis than
with</strong>
<em>.
Bold</em>
<var> Suggests a word or phrase that is variable
and should be replaced with a specific value.
Italic</var>
<b>old
In
typewriter font</b>
<big>creases the font size by 1 each time it is used (maximum size is 7, default size is 3)
Italic</big>
<i>scription</i>
<tt>De</tt>
B
<small>Decreases the font size by 1 each time it is used (minimum size is 1, default size is 3)
sub</small>
<sub>script</sub>rdfdrf
<sup>superscri</sup>drfdrd
</pre>
<div class="exam">
<h1 style="text-shadow: 10px 3px 4px red;">SAMPLE TEXT</h1>
</div>
<p style="color: purple;background-color: yellow;">Remember to bring
your notebooks back to class tomorrow, because we will be starting a
new unit in English Literature.</p>
<a href="http://www.google.com">link to google</a>
<h2>Relative Link</h2>
<a href="eg.html">Go to About Page</a> <!-- PRACTISE RELATIVE LINKS IN DIFF PATHS-->
<h2>Absolute Link</h2>
<a href="https://www.google.com">Visit Google</a>
<br />
<a href="#top">go to top</a>
<br />
<a href="mailto:hityes57@gmail.com">email me</a>
<hr />
<p>[<a href="#top">Back to Top</a>]</p>
<div class="navlinks">
<p>[<a href="#top" >Back to Top22</a>]</p> <hr />
<a href="#top" >Back to Top33</a>
</div>
<a href="link.html" class="navlinks">Home</a>
<a href="http://www.yahoo.com" title="Click this link to leave our
site and visit Yahoo!">Visit Yahoo!</a><hr />
<a href="page1.html" tabindex="1">Page 1</a><br />
<a href="page2.html" tabindex="2">Page 2</a><br />
Click the link or type the appropriate keyboard shortcut and press RETURN
to visit the page of your choice:
<a href="eg.html" tabindex="1" accesskey="1">Page 1</a> (Alt-1)<br />
<a href="first.html" tabindex="2" accesskey="2">Page 2</a> (Alt-2)<br />
<a href="http://www.yahoo.com" target="_blank">Search Yahoo!</a>
<img src="C:\Users\jitad\Desktop\picture\AnimeX_959721.jpeg" width="270" height="480" title="anime girl" border-color="yellow" border-style="double"/>
<a href="https://www.google.com" target="_blank">
<img src="C:\Users\jitad\Desktop\picture2\Shizuku Hinomori (1).jpg" width="360" height="1080" title="anime girl pics 2" alt="LINK: to a website" border="5"/>
</a>
<div class="headshot">
<!-- <img src="C:\Users\jitad\Desktop\picture\AnimeX_959721.jpeg" width="270" height="480" title="anime girl" style="float:right"/>-->
<img src="C:\Users\jitad\Desktop\picture\AnimeX_959721.jpeg" width="270" height="480" title="anime girl"/>
</div>
<div class="headshot">
<img src="C:\Users\jitad\Desktop\picture\AnimeX_954473.jpeg" width="270" height="480" title="annimee blue sky"/>
</div>
<p> you could use the float property on that image, and set the value to “right” to tell the browser
to keep the image on the right side of the text. Possible values for the float property are left,
right, or none</p>
<p style="clear:right"> From time to time you’ll encounter an instance in which you actually need to stop or clear
a float. One example might involve the same situation I just used—an image floated to the
right of a few paragraphs of text. Suppose you wanted to break the long paragraph up into
two paragraphs, and then you only wanted the first paragraph to wrap around the image. The
remaining paragraph would then take up the entire width of the page. To accomplish this, you
have to “clear the float” by adding the clear property to the section in question, such as:</p>
<div class="thumbnail">
<img src="C:\Users\jitad\Desktop\picture2\Shizuku Hinomori (2).jpg" width="340" height="180" alt="Jeff Smith, CEO" /><br />
<p>Jeff Smith, CEO</p>
</div>
<div class="thumbnail">
<img src="C:\Users\jitad\Desktop\picture2\Shizuku Hinomori.jpg" width="340" height="180" alt="Mary Clark, CFO" /><br />
<p>Mary Clark, CEO</p>
</div>
<div class="thumbnail">
<img src="C:\Users\jitad\Desktop\picture2\Emu Otori.jpg" width="340" height="180" alt="Laura Daniels, CTO" /><br />
<p>Laura Daniels, CTO</p>
</div>
<img src="C:\Users\jitad\Desktop\picture\AnimeX_959721.jpeg" width="270" height="480" title="anime girl" border-color="yellow" border-style="double" class="cement"/>
<img src="C:\Users\jitad\Desktop\picture\AnimeX_959721.jpeg" width="270" height="480" title="anime girl" class="centered"/>
My favorite fruits are
<ol>
<li>raspberries</li>
<li>strawberries</li>
<li>apples</li>
</ol>
<ol type="I">
<li>Introduction</li>
<li>Understanding the Medium</li>
<li>Basic Page Structure</li>
</ol>
<ol type="A">
<li>html</li>
<li>css</li>
<li>js</li>
</ol>
<ol type="a" start="3">
<li>Color</li>
<li>Working with Text</li>
<li>Working with Links</li>
</ol>
<ol type="a" start="3">
<li>Color</li>
<li>Working with Text</li>
<li value="7">Working with Links</li>
</ol>
<ul>
<li>red</li> <!--disc used-->
<li>green</li>
<li>blue</li>
</ul>
<ul type="circle">
<li>red</li>
<li>green</li>
<li>blue</li>
</ul>
<ul type="square">
<li>red</li>
<li>green</li>
<li>blue</li>
</ul>
<ul class="mod">
<li>red
<ul type="square">
<li>red</li>
<li>green</li>
<li>blue</li>
</ul>
</li>
<li>green
<ul type="square">
<li>red
<ul type="square">
<li>red
<ul type="square">
<li>red</li>
<li>green</li>
<li>blue</li>
</ul>
</li>
<li>green</li>
<li>blue</li>
</ul>
</li>
<li>green</li>
<li>blue</li>
</ul>
</li>
<li>blue
<ul type="square">
<li>red</li>
<li>green</li>
<li>blue</li>
</ul>
</li>
</ul>
<br />
<ul>
<li>num 1</li>
<ul>
<li>easy</li>
<li>medium</li>
</ul>
<li>num 2</li>
<ul>
<li>inner 1</li>
<ul>
<li>inside you1</li>
<ul>
<li>deep inside you</li>
</ul>
</ul>
</ul>
</ul>
<dl>
<dt>W3C</dt>
<dd>The World Wide Web Consortium was created in 1994 to develop
standards and protocols for the World Wide Web.</dd>
<dt>HTML</dt>
<dd>Hypertext Markup Language is the authoring language used to
create documents for the World Wide Web.</dd>
</dl>
<ol type="I">
<li>Introduction</li>
<li>Part I
<ol type="A">
<li>Description</li>
<li>Examples
<ol type="1">
<li>Reference One</li>
<li>Reference Two</li>
</ol>
</li>
</ol>
</li>
<li>Part 2</li>
<li>Summary</li>
</ol>
<dl>
<dt><b>Morning</b></dt>
<dd>Corinna wakes up around 7:00.</dd>
<dd>Change her diaper and dress her.</dd>
<dd>Feed her breakfast. Some of her favorites are:
<ul>
<li>Waffles</li>
<li>Oatmeal</li>
<li>Cereal</li>
<li>Fruit</li>
</ul>
</dd>
</dl>
<img src="https://c.tenor.com/105SSzB_tNEAAAAC/anime.gif" alt="waifu" width="" class="centered">
<a href="C:\Users\jitad\Videos\Captures\Watch Lazarus English Sub_Dub online Free on HiAnime.to - Google Chrome 2025-05-23 23-55-37.mp4">video of random recording.</a>
<dd><img src="C:\Users\jitad\Desktop\picture\Gojo & Geto.jpg" width="12" height="12" alt="star">The World
Wide Web Consortium was created in 1994</dd> <!-- list with bullet points as pictures-->
<div id="example">
<ul id="navlist">
<li class="active">Home</li>
<li><a title="LINK: School calendar" href="">School Calendar</a></li>
<li><a title="LINK: Check out the school day weather" href="">Today's
School Day Weather</a></li>
<li><a title="LINK: Class notes for each grade level" href="">Class
Notes and Supply Lists </a></li>
<li><a title="LINK: News for parents" href="">Important Information for
Parents</a></li>
<li><a title="LINK: Meet the staff" href="">Meet the Teachers/Staff</a>
</li>
<li><a title="LINK: Support the school" href="">How You Can Support Our
School </a></li>
<li><a title="LINK: Lunch menu" href="">What's for Lunch?</a></li>
<li><a title="LINK: Bus routes" href="">Bus Schedules</a></li>
<li><a title="LINK: School profile" href="">School Profile</a></li>
<li><a title="LINK: PTA" href="">PTA at HWES</a></li>
<li><a title="LINK: Inclement weather news" href="">Inclement Weather
Policy</a></li>
</ul>
</div>
<br /><br />
<div id="eg2">
<ul id="navlist22">
<li class="active1">Home</li>
<li><a title="LINK: About Us" href="aboutus.html">About Us</a></li>
<li><a title="LINK: Services" href="services.html">Services</a></li>
<li><a title="LINK: Clients" href="clients.html">Clients</a></li>
<li><a title="LINK: Contact Us" href="contactus.html">Contactus</a></
li>
</ul>
</div>
<table>
<tr>
<th>Popular Girls’ Names</th>
<th>Popular Boys’ Names</th>
</tr>
<tr>
<td>Emily</td>
<td>Jacob</td>
</tr>
<tr>
<td>Sarah</td>
<td>Michael</td>
</tr>
</table>
<br />
<table>
<tr>
<td>O</td>
<td>X</td>
<td>O</td>
</tr>
<tr>
<td>X</td>
<td>O</td>
<td>X</td>
</tr>
<tr>
<td>X</td>
<td>O</td>
<td>X</td>
</tr>
</table>
<br />
<table>
<tr>
<td>OOO</td>
<td>XXX</td>
<td>OOO</td>
</tr>
<tr>
<td>XXX</td>
<td>This is the center point of the <strong>tic-tac-toe board</strong>
for the game I am playing.</td>
<td>XXX</td>
</tr>
<tr>
<td>XXX</td>
<td>OOO</td>
<td>XXX</td>
</tr>
</table>
<br /><br />
<table>
<tr>
<td><img src="https://gifdb.com/images/thumbnail/5-centimeters-per-second-anime-love-toe4jlotdm5c8lja.gif" alt="O" width="19" height="19" /></td>
<td>XXX</td>
<td><img src="https://www.bing.com/th/id/OGC.df1ca5f9f377da663ac57b7d1f1f6524?cb=iwc2&pid=1.7&rurl=https%3a%2f%2fpa1.aminoapps.com%2f6048%2f13b81feb0e63d2d6db08df4d6bfc81f4815a23c6_hq.gif&ehk=sragWYXLvqGAwo5acKlCBT3v4EZSZ7q0eYF%2bxQLOUEU%3d" alt="O" width="19" height="19" /></td>
</tr>
<tr>
<td>XXX</td>
<td><img src="https://th.bing.com/th/id/OIP.eJUhUpj1c_T7YRfjscdAUQHaEK?w=322&h=181&c=7&r=0&o=5&cb=iwc2&dpr=1.3&pid=1.7" alt="O" width="19" height="19" /></td>
<td>XXX</td>
</tr>
<tr>
<td>XXX</td>
<td><img src="https://www.bing.com/th/id/OGC.7aee8c95f6788c5c9bf580224aa5e650?cb=iwc2&pid=1.7&rurl=https%3a%2f%2faniyuki.com%2fwp-content%2fuploads%2f2022%2f06%2fanime-hugs-aniyuki-2.gif&ehk=Yva%2fhjXJHftavX8bp38s7uQv4d6KCvD8R80zBU1KA0Q%3d" alt="O" width="19" height="19" /></td>
<td>XXX</td>
</tr>
</table>
<table border="4">
<tr>
<td><img src="https://gifdb.com/images/thumbnail/5-centimeters-per-second-anime-love-toe4jlotdm5c8lja.gif" alt="O" width="19" height="19" /></td>
<td>XXX</td>
<td><img src="https://www.bing.com/th/id/OGC.df1ca5f9f377da663ac57b7d1f1f6524?cb=iwc2&pid=1.7&rurl=https%3a%2f%2fpa1.aminoapps.com%2f6048%2f13b81feb0e63d2d6db08df4d6bfc81f4815a23c6_hq.gif&ehk=sragWYXLvqGAwo5acKlCBT3v4EZSZ7q0eYF%2bxQLOUEU%3d" alt="altt" width="19" height="19" /></td>
</tr>
<tr>
<td>XXX</td>
<td><img src="https://th.bing.com/th/id/OIP.eJUhUpj1c_T7YRfjscdAUQHaEK?w=322&h=181&c=7&r=0&o=5&cb=iwc2&dpr=1.3&pid=1.7" alt="O" width="19" height="19" /></td>
<td>XXX</td>
</tr>
<tr>
<td>XXX</td>
<td><img src="https://www.bing.com/th/id/OGC.7aee8c95f6788c5c9bf580224aa5e650?cb=iwc2&pid=1.7&rurl=https%3a%2f%2faniyuki.com%2fwp-content%2fuploads%2f2022%2f06%2fanime-hugs-aniyuki-2.gif&ehk=Yva%2fhjXJHftavX8bp38s7uQv4d6KCvD8R80zBU1KA0Q%3d" alt="alt display" width="19" height="19" /></td>
<td>XXX</td>
</tr>
</table>
<br /><br />
<table border="4" frame="lhs" frame="above">
<tr>
<td><img src="https://gifdb.com/images/thumbnail/5-centimeters-per-second-anime-love-toe4jlotdm5c8lja.gif" alt="O" width="19" height="19" /></td>
<td>XXX</td>
<td><img src="https://www.bing.com/th/id/OGC.df1ca5f9f377da663ac57b7d1f1f6524?cb=iwc2&pid=1.7&rurl=https%3a%2f%2fpa1.aminoapps.com%2f6048%2f13b81feb0e63d2d6db08df4d6bfc81f4815a23c6_hq.gif&ehk=sragWYXLvqGAwo5acKlCBT3v4EZSZ7q0eYF%2bxQLOUEU%3d" alt="altt" width="19" height="19" /></td>
</tr>
<tr>
<td>XXX</td>
<td><img src="https://th.bing.com/th/id/OIP.eJUhUpj1c_T7YRfjscdAUQHaEK?w=322&h=181&c=7&r=0&o=5&cb=iwc2&dpr=1.3&pid=1.7" alt="O" width="19" height="19" /></td>
<td>XXX</td>
</tr>
<tr>
<td>XXX</td>
<td><img src="https://www.bing.com/th/id/OGC.7aee8c95f6788c5c9bf580224aa5e650?cb=iwc2&pid=1.7&rurl=https%3a%2f%2faniyuki.com%2fwp-content%2fuploads%2f2022%2f06%2fanime-hugs-aniyuki-2.gif&ehk=Yva%2fhjXJHftavX8bp38s7uQv4d6KCvD8R80zBU1KA0Q%3d" alt="alt display" width="19" height="19" /></td>
<td>XXX</td>
</tr>
</table>
<br /><br />
<table border="4" rules="rows">
<tr>
<td><img src="https://gifdb.com/images/thumbnail/5-centimeters-per-second-anime-love-toe4jlotdm5c8lja.gif" alt="O" width="19" height="19" /></td>
<td>XXX</td>
<td><img src="https://www.bing.com/th/id/OGC.df1ca5f9f377da663ac57b7d1f1f6524?cb=iwc2&pid=1.7&rurl=https%3a%2f%2fpa1.aminoapps.com%2f6048%2f13b81feb0e63d2d6db08df4d6bfc81f4815a23c6_hq.gif&ehk=sragWYXLvqGAwo5acKlCBT3v4EZSZ7q0eYF%2bxQLOUEU%3d" alt="altt" width="19" height="19" /></td>
</tr>
<tr>
<td>XXX</td>
<td><img src="https://th.bing.com/th/id/OIP.eJUhUpj1c_T7YRfjscdAUQHaEK?w=322&h=181&c=7&r=0&o=5&cb=iwc2&dpr=1.3&pid=1.7" alt="O" width="19" height="19" /></td>
<td>XXX</td>
</tr>
<tr>
<td>XXX</td>
<td><img src="https://www.bing.com/th/id/OGC.7aee8c95f6788c5c9bf580224aa5e650?cb=iwc2&pid=1.7&rurl=https%3a%2f%2faniyuki.com%2fwp-content%2fuploads%2f2022%2f06%2fanime-hugs-aniyuki-2.gif&ehk=Yva%2fhjXJHftavX8bp38s7uQv4d6KCvD8R80zBU1KA0Q%3d" alt="alt display" width="19" height="19" /></td>
<td>XXX</td>
</tr>
</table>
<br /><br />
<table border="5" cellpadding="5" cellspacing="15">
<tr>
<td><img src="https://gifdb.com/images/thumbnail/5-centimeters-per-second-anime-love-toe4jlotdm5c8lja.gif" alt="O" width="19" height="19" /></td>
<td>XXX</td>
<td><img src="https://www.bing.com/th/id/OGC.df1ca5f9f377da663ac57b7d1f1f6524?cb=iwc2&pid=1.7&rurl=https%3a%2f%2fpa1.aminoapps.com%2f6048%2f13b81feb0e63d2d6db08df4d6bfc81f4815a23c6_hq.gif&ehk=sragWYXLvqGAwo5acKlCBT3v4EZSZ7q0eYF%2bxQLOUEU%3d" alt="altt" width="19" height="19" /></td>
</tr>
<tr>
<td>XXX</td>
<td><img src="https://th.bing.com/th/id/OIP.eJUhUpj1c_T7YRfjscdAUQHaEK?w=322&h=181&c=7&r=0&o=5&cb=iwc2&dpr=1.3&pid=1.7" alt="O" width="19" height="19" /></td>
<td>XXX</td>
</tr>
<tr>
<td>XXX</td>
<td><img src="https://www.bing.com/th/id/OGC.7aee8c95f6788c5c9bf580224aa5e650?cb=iwc2&pid=1.7&rurl=https%3a%2f%2faniyuki.com%2fwp-content%2fuploads%2f2022%2f06%2fanime-hugs-aniyuki-2.gif&ehk=Yva%2fhjXJHftavX8bp38s7uQv4d6KCvD8R80zBU1KA0Q%3d" alt="alt display" width="19" height="19" /></td>
<td>XXX</td>
</tr>
</table>
<br /><br />
<table border="5" cellpadding="15" cellspacing="5">
<tr>
<td><img src="https://gifdb.com/images/thumbnail/5-centimeters-per-second-anime-love-toe4jlotdm5c8lja.gif" alt="O" width="19" height="19" /></td>
<td>XXX</td>
<td><img src="https://www.bing.com/th/id/OGC.df1ca5f9f377da663ac57b7d1f1f6524?cb=iwc2&pid=1.7&rurl=https%3a%2f%2fpa1.aminoapps.com%2f6048%2f13b81feb0e63d2d6db08df4d6bfc81f4815a23c6_hq.gif&ehk=sragWYXLvqGAwo5acKlCBT3v4EZSZ7q0eYF%2bxQLOUEU%3d" alt="altt" width="19" height="19" /></td>
</tr>
<tr>
<td>XXX</td>
<td><img src="https://th.bing.com/th/id/OIP.eJUhUpj1c_T7YRfjscdAUQHaEK?w=322&h=181&c=7&r=0&o=5&cb=iwc2&dpr=1.3&pid=1.7" alt="O" width="19" height="19" /></td>
<td>XXX</td>
</tr>
<tr>
<td>XXX</td>
<td><img src="https://www.bing.com/th/id/OGC.7aee8c95f6788c5c9bf580224aa5e650?cb=iwc2&pid=1.7&rurl=https%3a%2f%2faniyuki.com%2fwp-content%2fuploads%2f2022%2f06%2fanime-hugs-aniyuki-2.gif&ehk=Yva%2fhjXJHftavX8bp38s7uQv4d6KCvD8R80zBU1KA0Q%3d" alt="alt display" width="19" height="19" /></td>
<td>XXX</td>
</tr>
</table>
<br /><br />
<table border="5" cellpadding="15" cellspacing="15">
<tr>
<td><img src="https://gifdb.com/images/thumbnail/5-centimeters-per-second-anime-love-toe4jlotdm5c8lja.gif" alt="O" width="19" height="19" /></td>
<td>XXX</td>
<td><img src="https://www.bing.com/th/id/OGC.df1ca5f9f377da663ac57b7d1f1f6524?cb=iwc2&pid=1.7&rurl=https%3a%2f%2fpa1.aminoapps.com%2f6048%2f13b81feb0e63d2d6db08df4d6bfc81f4815a23c6_hq.gif&ehk=sragWYXLvqGAwo5acKlCBT3v4EZSZ7q0eYF%2bxQLOUEU%3d" alt="altt" width="19" height="19" /></td>
</tr>
<tr>
<td>XXX</td>
<td><img src="https://th.bing.com/th/id/OIP.eJUhUpj1c_T7YRfjscdAUQHaEK?w=322&h=181&c=7&r=0&o=5&cb=iwc2&dpr=1.3&pid=1.7" alt="O" width="19" height="19" /></td>
<td>XXX</td>
</tr>
<tr>
<td>XXX</td>
<td><img src="https://www.bing.com/th/id/OGC.7aee8c95f6788c5c9bf580224aa5e650?cb=iwc2&pid=1.7&rurl=https%3a%2f%2faniyuki.com%2fwp-content%2fuploads%2f2022%2f06%2fanime-hugs-aniyuki-2.gif&ehk=Yva%2fhjXJHftavX8bp38s7uQv4d6KCvD8R80zBU1KA0Q%3d" alt="alt display" width="19" height="19" /></td>
<td>XXX</td>
</tr>
</table>
<br /><br />
<table border="1" cellpadding="30" cellspacing="30" class="testing">
<tr>
<td><img src="https://media.giphy.com/media/3oriO0OEd9QIDdllqo/giphy.gif" alt="O" /></td>
<td>XXX</td>
<td><img src="https://media.giphy.com/media/l0MYB8Ory7Hqefo9a/giphy.gif" alt="Another" /></td>
</tr>
<tr>
<td>XXX</td>
<td><img src="https://media.giphy.com/media/xT0xeJpnrWC4XWblEk/giphy.gif" alt="Center" /></td>
<td>XXX</td>
</tr>
<tr>
<td>XXX</td>
<td><img src="https://media.giphy.com/media/dzaUX7CAG0Ihi/giphy.gif" alt="Cute hug" /></td>
<td>XXX</td>
</tr>
</table>
<br /><br />
<table border="1" class="testing">
<tr>
<td><img src="https://media.giphy.com/media/3oriO0OEd9QIDdllqo/giphy.gif" alt="O" /></td>
<td>XXX</td>
<td><img src="https://media.giphy.com/media/l0MYB8Ory7Hqefo9a/giphy.gif" alt="Another" /></td>
</tr>
<tr>
<td>XXX</td>
<td><img src="https://media.giphy.com/media/xT0xeJpnrWC4XWblEk/giphy.gif" alt="Center" /></td>
<td>XXX</td>
</tr>
<tr>
<td>XXX</td>
<td><img src="https://media.giphy.com/media/dzaUX7CAG0Ihi/giphy.gif" alt="Cute hug" /></td>
<td>XXX</td>
</tr>
</table>
<br /><br />
<table border="5" cellpadding="15" cellspacing="15" class="test22">
<tr>
<td>Holding Hands</td>
<td>Sweet Hug</td>
<td>Shy Glance</td>
</tr>
<tr>
<td>First Kiss</td>
<td>Blushing Together</td>
<td>Cherry Blossom Date</td>
</tr>
<tr>
<td>Rainy Day Hug</td>
<td>Matching Scarves</td>
<td>Sunset Walk</td>
</tr>
</table>
<div class="test22">
<table class="float-right">
<tr>
<td>This is short.</td>
<td>This one is a bit longer than the first.</td>
<td>Here is a much longer sentence meant to take up more space in the table cell.</td>
</tr>
<tr>
<td>A tiny line.</td>
<td>Medium sentence right here, just enough.</td>
<td>Another long sentence that might stretch across the cell depending on screen width.</td>
</tr>
<tr>
<td>Hi!</td>
<td>Just a regular sentence for balance.</td>
<td>This sentence is big, bold, and full of energy, like a paragraph pretending to be a sentence!</td>
</tr>
</table>
<h1>Tic-Tac-Toe</h1>
<p>
There are many places online where you can play tic-tac-toe, either
by yourself or with other Web users. Visit
<a href="http://dir.yahoo.com/Recreation/Games/Puzzles/Tic_Tac_Toe/">
Yahoo Games</a> for a list of some hot tic-tac-toe games.
</p>
<p>
A game like this one, in which no one wins, is often called a cat's
game. There are many theories as to why it is called that, but my
personal favorite is this: In many other games it is called a scratch
game when no one wins. Since cats scratch, you can see where the
phrase "cat's game" might have originated.
</p>
</div>
<br /><br />
<div class="ezez">
<table border="3" style="margin:0 auto;" bgcolor="#999">
<caption>This is a "cat's game" of tic-tac-toe.</caption>
<tr>
<td>O</td>
<td>X</td>
<td>O</td>
</tr>
</table>
</div>
<br />
<div class="t11">
<table border="5" class="tableeg" style="width:500px; height:400px;">
<tr class="uni">
<td class="left">This is short.</td>
<td class="right">This one is a bit longer than the first.</td>
<td class="center">Here is a much longer sentence meant to take up more space in the table cell.</td>
</tr>
<tr>
<td class="center">A tiny line.</td>
<td class="left">Medium sentence right here, just enough.</td>
<td class="right">Another long sentence that might stretch across the cell depending on screen width.</td>
</tr>
<tr>
<td>Hi!</td>
<td>Just a regular sentence for balance.</td>
<td>This sentence is big, bold, and full of energy, like a paragraph pretending to be a sentence!</td>
</tr>
</table>
</div>
<br /><br />
<table >
<tr>
<td>This is short.</td>
<td class="no-wrap">This one is a bit longer than the first.</td>
<td>Here is a much longer sentence meant to take up more space in the table cell.</td>
</tr>
<tr>
<td>A tiny line.</td>
<td class="no-wrap">Medium sentence right here, just enough.</td>
<td>Another long sentence that might stretch across the cell depending on screen width.</td>
</tr>
<tr>
<td>Hi!</td>
<td>Just a regular sentence for balance.</td>
<td>This sentence is big, bold, and full of energy, like a paragraph pretending to be a sentence!</td>
</tr>
</table>
<br /><br />
<table border="1">
<tr>
<td colspan="3">These two cells have been merged so the content
from the first cell flows into the second.</td>
<td>3--1st tr</td>
</tr>
<tr>
<td>4--2nd</td>
<td>5--2nd</td>
<td>6--2nd</td>
<td>7--2nd</td>
</tr>
</table>
<br /><br />
<table border="1">
<tr>
<td colspan="2">These two cells have been merged so the content
from the first cell flows into the second.</td>
<td rowspan="4">These two cells have been merged so the content
from the top one flows into the bottom one.</td>
</tr>
<tr>
<td>4--2nd</td>