-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCollgHTML.html
More file actions
143 lines (126 loc) · 3.42 KB
/
Copy pathCollgHTML.html
File metadata and controls
143 lines (126 loc) · 3.42 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
<!DOCTYPE html>
<html>
<head>
<title>MyPage</title>
<style>
table {
border-collapse: collapse;
}
td,
th {
border: 1px solid black;
padding: 10px 20px;
}
</style>
</head>
<body>
<header>
<h1 id="head">Comedy Rules</h1>
</header>
<!-- <marquee direction="left">Heloo</marquee> -->
<h2> Comedy is the best</h2>
<h3> Comedyyyy</h3>
<p> Fun stuff that makes yoou laugh is called comedy <br> i like comedy</p>
<hr>
<hr>
<hr>
<form>
<select>
<option selected>Juice</option>
<option>Miranda</option>
<option>Citrus</option>
</select>
<input type="Radio">Select me</input>
<input type="Checkbox" checked>Tick me</input>
<input type="Text" placeholder="Type here"> Type smthn </input>
</form>
<p>
<pre>Myyyy </pre> <abbr> Lmtd. </abbr>
<code> 0101110 </code><del>£ 40</del> <strong>Nope!!! </strong><ins><em>Comedy</ins><sup>
is</sup>
<kbd>Hiiii</kbd>
<sub>freeee</sub></em></p>
<hr>
<hr>
<p>
<a id="John" href="https://www.bbc.com">This is my link</a>
<br><br><br><br>
<a href="#John">Click to go back to old link</a>
</p>
<hr>
<hr>
<main>
<article>
<p>
<img src="./Sample Media/funny-giraffe-wearing-pink-glasses-dark-background-generative-ai_58409-38047.jpg"
height="200" width="200"><br>Homer simpson </img>
<br>
<video src="./Sample Media/Sample Video.mp4" height="200" width="300" controls type="video/mp4">
The vid isnt supported by your browser
<track default kind="captions" srclang="en" src="xyz.vtt">
</video>
<br>
<audio src="" controls type="mp3">Audio type not supported by your browser</audio>
<br>
</p>
</article>
</main>
<hr>
<hr>
<table>
<thead>
<th> Johny</th>
<th>Jacob</th>
<th>Jake</th>
</thead>
<tbody>
<tr>
<td colspan="2">JJ</td>
<!-- <td>JJ</td> -->
<td rowspan="2">JJ</td>
</tr>
<tr>
<td>k</td>
<td>k</td>
<!-- <td>k</td> -->
</tr>
</tbody>
<caption> Love</caption>
</table>
<hr>
<hr>
<p>
<ol type="I">
<li>Uno</li>
<li>Dos</li>
<li>Tres<ul>
<li>fhhf</li>
<li>hedh</li>
</ul>
</li>
<li>Quatre</li>
</ol>
<br><br>
<dl>
<dt>Pisces</dt>
<dd>Dolly Parton</dd>
<dt>Virgo</dt>
<dd>Vigrins</dd>
</dl>
</p>
<hr>
<hr>
<div> Hello. I am the <span>Very model of a </span> modern major general</div>
<hr>
<hr>
<details>
<summary>Details</summary>
Something that generally escapes the eye
</details>
<hr>
<hr>
<hr>
<footer> <input action="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td" type="submit"
value="Loved it"></form>
</footer>
</body>