-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourses.html
More file actions
71 lines (67 loc) · 2.52 KB
/
courses.html
File metadata and controls
71 lines (67 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Brixton University - Courses</title>
<link rel="stylesheet" href="styles/courses.css">
</head>
<body>
<header>
<h1>Brixton University</h1>
</header>
<nav>
<a href="main.html">Home</a>
<a href="about.html">About</a>
<a href="courses.html">Courses</a>
<a href="events.html">Events</a>
<a href="contact.html">Contact Us</a>
</nav>
<main>
<section>
<h2>Our Courses</h2>
<p>Explore our diverse range of undergraduate and postgraduate programs. We offer courses designed to equip students with the knowledge and skills needed to succeed in their chosen careers.</p>
<table border="1">
<thead>
<tr>
<th>Course</th>
<th>Duration</th>
<th>Annual Fees</th>
<th>Eligibility</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bachelor of Business Administration (BBA)</td>
<td>3 Years</td>
<td>£9,000</td>
<td>10+2 with >80% Marks</td>
</tr>
<tr>
<td>Master of Business Administration (MBA)</td>
<td>2 Years</td>
<td>£12,000</td>
<td>Bachelor's Degree with 3.6+ GPA</td>
</tr>
<tr>
<td>Bachelor of Engineering (B.Eng)</td>
<td>4 Years</td>
<td>£11,500</td>
<td>10+2 with Science stream with >80% marks</td>
</tr>
<tr>
<td>Bachelor of Psychology (B.Psy)</td>
<td>3 Years</td>
<td>£8,500</td>
<td>10+2 with >80% Marks</td>
</tr>
</tbody>
</table>
</section>
</main>
<footer>
<p>© 2025 Brixton University. All rights reserved.</p>
<p>123 Brixton Road, London, UK | Phone: +44 20 1234 5678 | Email: info@brixtonuniversity.ac.uk</p>
</footer>
</body>
</html>