-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExperiment 3.html
More file actions
79 lines (78 loc) · 2.15 KB
/
Experiment 3.html
File metadata and controls
79 lines (78 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>College Timetable</title>
</head>
<body>
<h4 align="center">College Timetable- CSE Department</h4>
<table border="2" align="center" cellpadding="5">
<tr>
<th>Day/Time</th>
<th>9:00-10:00</th>
<th>10:00-11:00</th>
<th>11:00-12:00</th>
<th>12:00-1:00</th>
<th>1:00-2:00</th>
<th>2:00-3:00</th>
<th>3:00-4:00</th>
</tr>
<tr>
<td>Monday</td>
<td rowspan="2">Mathematics</td>
<td>English</td>
<td rowspan="3">Physics</td>
<td>Break</td>
<td colspan="2">Computer Lab</td>
<td>Sports</td>
</tr>
<tr>
<td>Tuesday</td>
<td>C Programming</td>
<td>Break</td>
<td colspan="2">Electronics Lab</td>
<td>Library</td>
</tr>
<tr>
<td>Wednesday</td>
<td>Mathematics</td>
<td>English</td>
<td>Break</td>
<td>Computer Networks</td>
<td colspan="2">
<table border="1" cellpadding="5" cellspacing="5">
<tr>
<th colspan="2">Lab Details</th>
</tr>
<tr>
<td>Batch A</td>
<td>DBMS Lab</td>
</tr>
<tr>
<td>Batch B</td>
<td>OS Lab</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>Thursday</td>
<td colspan="2">Workshop</td>
<td>Physics</td>
<td>Break</td>
<td>Mathematics</td>
<td>English</td>
<td>Seminar</td>
</tr>
<tr>
<td>Friday</td>
<td> Computers Networks </td>
<td>English</td>
<td>Physics</td>
<td>Break</td>
<td colspan="3">Project Work</td>
</tr>
</table>
</body>
</html>