-
Notifications
You must be signed in to change notification settings - Fork 0
/
course.html
82 lines (74 loc) · 2.03 KB
/
course.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
<html>
<head>
<link rel = "stylesheet" href="styling2.css">
</head>
<body>
<h1 align="center">Semester 1</h1>
<table cellspacing = "30px" cellpadding ="10px" class="syllabus">
<th>Course</th>
<th >Course code</th>
<th>Credits</th>
<tr>
<td>Digital Electronics</td>
<td>ECT101</td>
<td>3</td>
</tr>
<tr>
<td>Fundamentals Of Electrical Engineering</td>
<td>ECT103</td>
<td>3</td>
</tr>
<tr>
<td>Introduction to Computer Systems and Programming</td>
<td>CST101</td>
<td>3</td>
</tr>
<tr>
<td>Mathematics</td>
<td>MAT101</td>
<td>3</td>
</tr>
<tr>
<td>Communication Skills in English</td>
<td>HST101</td>
<td>2</td>
</tr>
</table>
<h1 align="center">Semester 2</h1>
<table cellspacing = "40px" cellpadding ="20px" class="syllabus">
<th>Course</th>
<th >Course code</th>
<th>Credits</th>
<tr>
<td>Electronic devices and Circuts</td>
<td>ECT102</td>
<td>3</td>
</tr>
<tr>
<td>Data Structures anad Algorithms</td>
<td>CST102</td>
<td>3</td>
</tr>
<tr>
<td>Internet and Web Technologies</td>
<td>CST104</td>
<td>3</td>
</tr>
<tr>
<td>Mathematics 2</td>
<td>MAT102</td>
<td>3</td>
</tr>
<tr>
<td>Health Safety and Environnment</td>
<td>HST102</td>
<td>3</td>
</tr>
<tr>
<td>Human Values and Effective Communication</td>
<td>HST104</td>
<td>2</td>
</tr>
</table>
</body>
</html>