-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourses.html
78 lines (75 loc) · 2.54 KB
/
courses.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Offered Courses</title>
<link rel="stylesheet" href="edge.css">
</head>
<body>
<!-- top section start -->
<section id="top-section">
<div class="top-div">
<h1 id="top-h1">EDGE: BU-CSE Digital Skills Training</h1>
</div>
<div>
<nav class="top-nav">
<ul>
<li ><a href="index.html">Announcement</a></li>
<li id="nav-active"><a href="courses.html">Offered Courses</a></li>
<li><a href="apply.html">Apply Online</a></li>
</ul>
</nav>
</div>
</section>
<!-- top section end -->
<!-- Course section -->
<section id="table-section">
<h1>List Of Offered Courses</h1>
<table id="course-table">
<tr>
<th>Sl</th>
<th>Course Title</th>
<th>Training Duration</th>
<th>Pre-requisites</th>
</tr>
<tr>
<td>1</td>
<td>Computer Fundamentals and Office Application</td>
<td>60 hours within 2 months</td>
<td>Any Disipline</td>
</tr>
<tr>
<td>2</td>
<td>Basic Networking</td>
<td>60 hours within 2 months</td>
<td>Any Disipline</td>
</tr>
<tr>
<td>3</td>
<td>Basic Web Development</td>
<td>60 hours within 2 months</td>
<td>Any Disipline</td>
</tr>
<tr>
<td>4</td>
<td>Basic Programming with python</td>
<td>60 hours within 2 months</td>
<td>Any Disipline</td>
</tr>
<tr>
<td>5</td>
<td>Database Management</td>
<td>80 hours within 2 months</td>
<td>Science Background</td>
</tr>
<tr>
<td>6</td>
<td>Mobile Application Development</td>
<td>60 hours within 2 months</td>
<td>Any Disipline</td>
</tr>
</table>
</section>
</body>
</html>