-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudents.php
62 lines (57 loc) · 3.27 KB
/
students.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Visit us | Cantor College</title>
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
<script src="assets/js/navbar.js" defer></script>
<link rel="icon" type="image/png" href="assets/images/logo-trans-cropped.png">
</head>
<body>
<?php
// Menu & Banner
include("includes/header.php");
?>
<div class="central-cont">
<div class="center">
<h1>Information for Students:</h1>
</div>
<p>
<b>Academic Information</b><br>
• Faculties - Links to all the Faculty and Departmental Offices with information on staff, courses and events. <br>
• A to Z List of Departments - Departmental Homepages. <br>
• Library and Learning Resource Services - Information on LLRS services, access to the on-line catalogue, links to external academic resources and guides to using IT to support your studies. <br>
• Our Academic Partners - Information on College links. <br>
• Research - links to the Research Centres, guide to research opportunities and help on finding research funding. <br><br>
<b>Administrative Support</b><br>
• Academic Registry - Information provided by the Academic Registry, including Academic Calendars, Academic Regulations, Module Catalogue, information on award ceremonies and tuition fees. <br>
• Student Guide to Regulations - General and Academic Regulations, World Wide Web Code of Practice, Rules Governing the Use of LLRS facilities. <br><br>
<b>Student Services</b><br>
• Advisory and Counselling Centre - academic advice, help for international students, careers guidance, personal counselling, student loans and access funds and support for students with disabilities/learning difficulties. <br>
• Health Centre - guide to the services provided by the University Health Centre. <br>
• Multi-Faith Centre - information regarding the work of the Multi-Faith Centre. <br>
• Pre-School Centre - contact information regarding the University's child care facilities. <br>
• Sports Centre - booking arrangements and facilities. <br><br>
<b>University Services</b><br>
• Catering Services - guide to the catering facilities on campus. <br>
• Printing Services - information regarding services provided for students. <br>
• Student Accommodation Services - guide to University Accommodation and help on finding accommodation in the private sector. <br><br>
<b>Life at the University</b><br>
• Arts Centre - what's on at the University's arts venues. <br>
• Students' Union - events and services provided by the Students' Union. <br>
• University Guide - a full guide to life at the University. <br>
• Campus Navigator - help with finding your way around campus. <br><br>
<b>Communications</b><br>
• Noticeboards - General, Classified, Events and Alumni noticeboards. <br>
• Student Email Search - database of student email addresses. <br>
• Staff Search - database of staff email addresses. <br>
• A to Z List of Services - full A to Z list of University Services. <br>
</p>
</div>
<?php
// Footer
include("includes/footer.php");
?>
</body>
</html>