-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtables_and_forms.html
109 lines (109 loc) · 2.3 KB
/
tables_and_forms.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
<html>
<head>
<title>Tables and Forms</title>
<link rel="stylesheet" href="css/style_tables_and_forms.css">
<script type="text/javascript" src="js/script_tables_and_forms.js"></script>
</head>
<body>
<table border="1">
<thead>
<tr>
<td>
<span><b>1st</b></span>
</td>
<td>
<span><b>2nd</b></span>
</td>
<td>
<span><b>3rd</b></span>
</td>
<td>
<span><b>4th</b></span>
</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<span>2</span>
</td>
<td>
<span>3</span>
</td>
<td>
<span>4</span>
</td>
<td>
<!-- this column is empty -->
</td>
</tr>
<tr>
<td>
<!-- this column is empty -->
</td>
<td>
<span>5</span>
</td>
<td>
<span>6</span>
</td>
<td>
<span>7</span>
</td>
</tr>
<tr>
<td>
<!-- this column is empty -->
</td>
<td>
<span>8</span>
</td>
<td>
<span>9</span>
</td>
<td>
<span>0</span>
</td>
</tr>
<tr>
<td>
<span>1</span>
</td>
<td>
<!-- this column is empty -->
</td>
<td>
<!-- this column is empty -->
</td>
<td>
<!-- this column is empty -->
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>
<span>footer 1</span>
</td>
<td>
<span>footer 2</span>
</td>
<td>
<span>footer 3</span>
</td>
<td>
<span>footer 4</span>
</td>
</tr>
</tfoot>
</table>
<br /><br />
<form>
<label for="inEmail">E-mail:</label>
<input id="inEmail" type="email" />
<label for="inPassword">Password:</label>
<input id="inPassword" type="password" />
<input id="inSubmit" type="submit" onclick="FormClicked();" />
</form>
</body>
</html>