-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
110 lines (100 loc) · 2.33 KB
/
table.html
File metadata and controls
110 lines (100 loc) · 2.33 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
<html>
<head>
<style>
table,th,td,tr{
border: 2px solid black;
border-collapse: collapse;
padding: 10px;
}
th{
background-color: aqua;
}
.a{
background-color: coral;
}
#b{
background-color:greenyellow;
}
</style>
</head>
<body>
<form action="">
<fieldset>
<legend>
myform
</legend>
<label for="k">Name</label>
<input type="text" name="name" id="k" readonly value="only reading">
<input type="number" placeholder="enter number" min="18"
max="22" disabled>
<input type="password" placeholder="passcode" pattern="[A-C]{3}">
<input type="radio">
<input type="checkbox">
<input type="mail">
<input type="date">
<input type="datetime-local">
<select>
<option value="">html</option>
<option value="">html</option>
<option value="">html</option>
</select>
<textarea>mutext</textarea>
<input type="submit">
</fieldset>
</form>
<h1> Time Table</h1>
<table>
<tr><th>Day period</th>
<td>I</td>
<td>II</td>
<td>III</td>
<td>12:00-12:40</td>
<td>IV</td>
<td>V</td>
<td>VI</td>
<td>VII</td>
</tr>
<tr>
<th>Monday</th>
<td>Eng</td>
<td class="a">Mat</td>
<td>Che</td>
<td rowspan="5"><br>lunch</td>
<td colspan="3" id="b">LAB</td>
<td>Phy</td>
</tr>
<tr>
<th>Tuesday</th>
<td colspan="3" id="b">Lab</td>
<td>Eng</td>
<td>Che</td>
<td class="a j">Math</td>
<td>Sports</td>
</tr>
<tr>
<th>Wednesday</th>
<td class="a">Mat</td>
<td>Phy</td>
<td>Eng</td>
<td>Che</td>
<td colspan="3">Library</td>
</tr>
<tr>
<th>Thursday</th>
<td>Phy</td>
<td>Eng</td>
<td>Che</td>
<td colspan="3">LAB</td>
<td class="a">Mat</td>
</tr>
<tr>
<th>Friday</th>
<td colspan="3">LAB</td>
<td class="a">Mat</td>
<td>Che</td>
<td>Eng</td>
<td>Phy</td>
</tr>
</table>
</body>
</html>