-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTime_table_of_School
88 lines (63 loc) · 2.51 KB
/
Time_table_of_School
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=<device-width>, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<br>
<!--//to make time table of school-->
<table border="2"cellpadding="6">
<tbody>
<tr>
<th>Day</th> <!--//to make bold we use th-->
<th>1</th>
<th>2</th>
<th>3</th>
<th rowspan="6">B<br>R<br>E<br>A<br>K<br></th> <!--ye humne 3rd ke baad break likhne ke liye rowspan use kia-->
<th>4</th>
<th>5</th>
<th>6</th>
</tr>
<tr>
<th>monday</th>
<td colspan="2">english</td>
<td>hindi</td>
<td colspan="2">science </td>
<td>arts</td>
</tr>
<tr>
<th>tuesday</th>
<td colspan="2">english </td>
<td>hindi</td>
<td> </td>
<td colspan="2">science</td>
</tr>
<tr>
<th>wed</th>
<td colspan="2">english</td>
<td>hindi</td>
<td>science</td>
<td>arts</td>
<td>evs</td>
</tr>
<tr>
<th>thurs</th>
<td>english</td>
<td colspan="2">science</td>
<td>hindi</td>
<td colspan="2">games</td>
</tr>
<tr>
<th>friday</th>
<td colspan="2">english</td>
<td>evs</td>
<td>hindi</td>
<td colspan="2">games</td>
</tr>
</tbody>
</table>
</body>
</html>