-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathctk5.html
More file actions
172 lines (162 loc) · 3.49 KB
/
ctk5.html
File metadata and controls
172 lines (162 loc) · 3.49 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>3-Day Module-wise Study Timetable</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
h1 {
text-align: center;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th, td {
border: 1px solid #000;
padding: 8px;
text-align: left;
vertical-align: top;
}
th {
background-color: #f2f2f2;
}
tr:nth-child(even) {
background-color: #f9f9f9;
}
ul {
margin: 0;
padding-left: 18px;
}
</style>
</head>
<body>
<h1>3-Day Module-wise Study Timetable</h1>
<table>
<tr>
<th>Time</th>
<th>Day 1 — 19 Oct<br>(Module 1)</th>
<th>Day 2 — 20 Oct<br>(Module 2)</th>
<th>Day 3 — 21 Oct<br>(Revision)</th>
</tr>
<tr>
<td>7:00 AM − 9:00 AM</td>
<td>
<ul>
<li>Engineering Mathematics — Module 1 (Formulas & Basic Problems)</li>
</ul>
</td>
<td>
<ul>
<li>Engineering Mathematics — Module 2 (Advanced Problems & Practice)</li>
</ul>
</td>
<td>
<ul>
<li>Maths — Revise formulas & solve quick questions</li>
</ul>
</td>
</tr>
<tr>
<td>9:30 AM − 11:30 AM</td>
<td>
<ul>
<li>Engineering Physics — Module 1 (Theory & Derivations)</li>
</ul>
</td>
<td>
<ul>
<li>Engineering Physics — Module 2 (Numericals & Key Concepts)</li>
</ul>
</td>
<td>
<ul>
<li>Physics — Revise derivations & do 2–3 numericals</li>
</ul>
</td>
</tr>
<tr>
<td>12:00 PM − 1:00 PM</td>
<td>
<ul>
<li>English LSRW — Module 1 (Vocabulary, Grammar Basics)</li>
</ul>
</td>
<td>
<ul>
<li>English LSRW — Module 2 (Essay & Comprehension Practice)</li>
</ul>
</td>
<td>
<ul>
<li>English — Light review of grammar & reading</li>
</ul>
</td>
</tr>
<tr>
<td>2:00 PM − 4:00 PM</td>
<td>
<ul>
<li>Frontend Web Development — Module 1 (HTML/CSS Basics)</li>
</ul>
</td>
<td>
<ul>
<li>PSUP — Module 2 (Loops, Functions, Programs)</li>
</ul>
</td>
<td>
<ul>
<li>PSUP + Frontend — Quick code practice</li>
</ul>
</td>
</tr>
<tr>
<td>4:30 PM − 6:30 PM</td>
<td>
<ul>
<li>PSUP — Module 1 (Basic Syntax, Programs)</li>
</ul>
</td>
<td>
<ul>
<li>Frontend — Module 2 (Forms, Layout, JS Basics)</li>
</ul>
</td>
<td>
<ul>
<li>Mock Practice — 25 MCQs + 2 Subjective per subject</li>
</ul>
</td>
</tr>
<tr>
<td>7:30 PM − 9:00 PM</td>
<td>
<ul>
<li>Recap of Module 1 topics studied today</li>
</ul>
</td>
<td>
<ul>
<li>Recap of Module 2 topics studied today</li>
</ul>
</td>
<td>
<ul>
<li>Prepare 1-page quick sheets for each subject</li>
</ul>
</td>
</tr>
<tr>
<td>9:00 PM onwards</td>
<td colspan="3">
Rest & light review only. Sleep early to stay fresh for exams.
</td>
</tr>
</table>
</body>
</html>