-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.html
executable file
·66 lines (66 loc) · 1.73 KB
/
page.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
<!doctype html>
<html>
<head>
<title>Cool Page</title>
</head>
<body>
Outside paragraph<br>
After Line break<br>
It is <b>Bold</b>, <i>Italic</i>, <u>Underline</u>
<p>In paragraph</p>
<p>Second paragraph</p>
<p>Paragraph without closing tag
<p>Another paragraph without closing tag
<h1>First Heading</h1>
<p>Another paragraph</p>
<h2>Second Heading</h2>
<p>Meow paragraph</p>
<h3>Unordered list</h3>
<ul>
<li>List item 1</li>
<li>List item 2</li>
</ul>
<h3>Ordered list</h3>
<ol>
<li>List item 1</li>
<li>List item 2</li>
</ol>
<h3>Definition list</h3>
<dl>
<dt>Term 1</dt>
<dd>Definition 1</dd>
<dt>Term 2</dt>
<dd>Definition 3</dd>
</dl>
<h4>Fourth heading</h4>
<p><a href="index.html">Link to Home Page</a></p>
<h5>Fifth heading</h5>
<h2>Form</h2>
<form action="page2.html" method="get">
Plain input: <input name="plain">
Input text: <input type="text" name="text" value="meow" size="5"><br>
Password: <input type="password" name="password"><br>
Checkboxes:<br>
<input type="checkbox" name="checkbox1" value="meow"> Meow<br>
<input type="checkbox" name="checkbox2" value="pizza"> Pizza<br>
Select ice cream flavor: <select name="icecream">
<option name="vanilla">Vanilla</option>
<option name="chocolate" selected>Chocolate</option>
<option>Cherry</option>
</select>
Scoops:<br>
<input type="radio" name="scoops" value="1"> 1<br>
<input type="radio" name="scoops" value="2"> 2<br>
<input type="radio" name="scoops" value="3"> 3<br>
Todo: <i>multi select</i><br>
Textarea:<br>
<textarea>Type text here</textarea><br>
Submit button: <input type="submit" value="Go"><br>
Reset button: <input type="reset">
</form>
<h2>HTML entities</h2>
<p>&amp: "&"<br>
&nbsp: " "<br>
<h2>More Stuff</h2>
<pre>Preformatted text</pre>
<address>Address</address>