-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourse.html
More file actions
59 lines (56 loc) · 1.94 KB
/
Copy pathcourse.html
File metadata and controls
59 lines (56 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student course portal - Home</title>
</head>
<body>
<header>
<h1>student course portal</h1>
<img src="campus pic.jpg" alt="Student Course Portal Logo" Width="300" height="300">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="course.html">Courses</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<h2>Available Courses</h2>
<table border="1">
<tr>
<th>Course Item</th>
<th>Course Name</th>
<th>Course Code</th>
</tr>
<tr>
<td>
<a herd="details cs01.html">
<img src="pic1.jpg" alt="Course 1" width="100" height="100">
</a>
<td>introduction to programing</td>
<td>CS101</td>
</tr>
<tr>
<td>
<a herf ="details cs02.html">
<img src="pic2.png" alt="Course 2" width="100" height="100">
<td>Database management system</td>
<td>CS102</td></td>
</tr>
<tr>
<td>
<a href="details cs03.html">
<img src="pic3.jpg" alt="Course 3" width="100" height="100"></a>
<td>Data structure and algorethym</td>
<td>CS103</td>
</tr>
</table>
</main>
<footer>
<p>© Bennett university. All rights reserved.</p>
</footer>
</body>
</html>