-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlayout.html
More file actions
153 lines (119 loc) · 5.12 KB
/
Copy pathlayout.html
File metadata and controls
153 lines (119 loc) · 5.12 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
<!DOCTYPE html>
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- table -->
<H3> Who wins? Cell content indicates the status of the row entry.</H3>
<TABLE>
<TR>
<TH></TH>
<TH>Godzilla</TH>
<TH>Batman</TH>
<TH>Shaq</TH>
<TH>Aaron Carter</TH>
<TH>Abe Licoln</TH>
</TR>
<TR>
<TH>Godzilla</TH>
<TD>N/A</TD>
<TD>Minor Loss</TD>
<TD>Loss</TD>
<TD>Unknown</TD>
<TD>Unknown</TD>
</TR>
<TR>
<TH>Batman</TH>
<TD>Minor Loss</TD>
<TD>N/A</TD>
<TD>Total Victory</TD>
<TD>Total Victory</TD>
<TD>Total Loss</TD>
</TR>
<TR>
<TH>Shaq</TH>
<TD>Win</TD>
<TD>Total Loss</TD>
<TD>N/A</TD>
<TD>Minor Loss</TD>
<TD>Unknown</TD>
</TR>
<TR>
<TH>Aaron Cater</TH>
<TD>Unknown</TD>
<TD>Total Loss</TD>
<TD>Minor Wim</TD>
<TD>N/A</TD>
<TD>Unknown</TD>
</TR>
<TR>
<TH>Abe Licoln</TH>
<TD>Unknown</TD>
<TD>Total Victory</TD>
<TD>Unknown</TD>
<TD>Unknwon</TD>
<TD>N/A</TD>
</TR>
<TR>
<td colspan="2"> Footer 1 </td>
<td colspan="4"> Foooter 2 </td>
</TR>
</TABLE>
<!-- dl -->
<dl>
<dt>Coffee</dt>
<dd>Black hot drink</dd>
<dt>Juice</dt>
<dd>Orange cold drink</dd>
<dt>Milk</dt>
<dd>White cold drink</dd>
</dl>
<!-- Divs -->
<div class="outer-content">
<div class="inner-content">
This is a div inside a div!
</div>
</div>
<!-- Forms -->
<form method="GET" action="http://web.engr.oregonstate.edu/~osterbit/2/repo/class-content/form_tests/Formtest.php">
<fieldset>
<legend>Some GET data:</legend>
<fieldset>Text:<input type="text" name="text_input"></fieldset>
<fieldset>Number:<input type="number" name="numerical_input"></fieldset>
<fieldset>Password:<input type="password" name="password_input"></fieldset>
<!--<h2>Candy</h2>-->
<fieldset>
Choose Between:
<br><br>
<input type="radio" name="candy" value="Snickers">Snickers<br><br>
<input type="radio" name="candy" value="Skittles">Skittles<br><br>
<input type="radio" name="candy" value="Mentos">Mentos<br><br>
</fieldset>
<input type="submit" value="Submit">
</fieldset>
</form>
<br>
<form method="POST" action="http://web.engr.oregonstate.edu/~osterbit/2/repo/class-content/form_tests/Formtest.php">
<fieldset>
<legend>Some POST data</legend>
<fieldset>Text:<input type="text" name="text_input"></fieldset>
<fieldset>Number:<input type="number" name="numerical_input"></fieldset>
<fieldset>Password:<input type="password" name="password_input"></fieldset>
<!--<h2>Candy</h2>-->
<fieldset>
Choose Between:
<br>
<input type="radio" name="candy" value="Snickers">Snickers<br><br>
<input type="radio" name="candy" value="Skittles">Skittles<br><br>
<input type="radio" name="candy" value="Mentos">Mentos<br><br>
</fieldset>
<input type="submit" value="Submit">
</fieldset>
</form>
<!--paragraphs -->
<img src="20120327161442396.jpg" alt="OSU" />
<p>First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here. First paragraph is here.First paragraph is here.First paragraph is here. First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.First paragraph is here.</p>
<p> Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. Second paragraph is here. </p>
</body>
</html>