-
Notifications
You must be signed in to change notification settings - Fork 0
/
html.html
157 lines (83 loc) · 3.54 KB
/
html.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
<html>
<head>
<title>My Webpage</title>
</head>
<body>
<p>Here is some text</p>
<p>Here is some more text</p>
<p>Here is some text <br> with a line break</p>
<hr>
<p>Here is some <strong>bold</strong> text</p>
<p>Here is some <em>italic</em> text</p>
<p>Here is some <ins>underlined</ins> text </p>
<hr>
<p>Here is some <sup>superscript</sup> text</p>
<p>Here is some <sub>subscript</sub> text</p>
<p>Here is some <del>deleted</del> text</p>
<ul>
<li><strong>Rob</strong></li>
<li><em>Kirsten</em></li>
<li><del>Tommy</del></li>
<li><ins>Ralphie</ins></li>
</ul>
<ol type="a">
<li><strong>Rob</strong></li>
<li><em>Kirsten</em></li>
<li><del>Tommy</del></li>
<li><ins>Ralphie</ins></li>
</ol>
<img src="https://upload.wikimedia.org/wikipedia/en/0/0b/Marge_Simpson.png" width="100" height="100" align="left">
<p>Marge Simpson</p>
<form>
<p>Username: <input type="text" placeholder="your username"></p>
<p>UStay logging in: <input type="checkbox"></p>
<p>Under 18: <input type="radio name="age"></p>
<p>Over 18: <input type="radio name="age"></p>
<p>Favourite food:
<slecet>
<option>Pizza</option>
<option slected>Ice cream</option>
<option>Pizza</option>
</select>
</p>
<p><input type="submit" value="Click me!"></p>
</form>
<table>
<thead>
<tr>
<th>Name</th>
<th>Favourite<br>Colour</th>
</tr>
</thead>
<tr>
<td>Barry</td>
<td>Red</td>
</tr>
<tr>
<td>Bruce</td>
<td>Black</td>
</tr>
<tr>
<td>Hal</td>
<td>Green</td>
</tr>
<tr>
<td>Clark</td>
<td>Blue</td>
</tr>
</table>
<p id="top"><a href="http://www.google.com">Click here to go to google.com</a></p>
<p><a href="http://www.wikipedia.org"><img src="homer.png"></a></p>
<p><a href="helloworld.html">Hello world!</a></p>
<p><a href="http://www.wikipedia.org"><img src="homer.png"></a></p>
<p id="thirdhomer"><a href="http://www.wikipedia.org"><img src="homer.png"></a></p>
<p><a href="http://www.wikipedia.org"><img src="homer.png"></a></p>
<p><a href="http://www.wikipedia.org"><img src="homer.png"></a></p>
<p><a href="#top">Back to top</a></p>
<p><a href="#thirdhomer">Go to third homer</a></p>
<a href="http://google.com">
<iframe src="http://www.mentorpro.cos"></iframe>
<iframe src="helloworld.html" frameboarder="0"></iframe>
<iframe width="560" height="315" src="https://www.youtube.com/embed/oLnGwUuKqu8" frameborder="0" allowfullscreen></iframe>
</body>
</html>