-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
54 lines (49 loc) · 2.14 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About | 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="center">
<h1>Facilities</h1>
</div>
<div class="central-cont">
<p>The College is located in the attractive and pleasantly refurbished Building. The building houses computing laboratories, and lecture/tutorial rooms. It has its own catering facilities and student work areas. There is also a car park to the back of the building.</p>
<p>Our building has space of 9500m², houses over 240 staff and provides teaching space for more than 1600 students.</p>
</div>
<div class="central-cont">
<div class="center">
<h1>Facilities include:</h1>
</div>
<p>
• wi-fi technology <br>
• pool teaching rooms, including classrooms to teach from 25 - 80 students <br>
• specialist faculty facilities <br>
• a double height lecture theatre at first and second floor level <br>
• dramatic three-storey glass open atrium <br>
• meeting rooms <br>
• office accommodation <br>
• specialist IT facilities <br>
• reception desk area <br>
• catering outlet <br>
• parking for disabled badge holders <br>
• cycle racks <br>
• gallery <br>
</p>
<br>
</div>
<?php
// Footer
include("includes/footer.php");
?>
</body>
</html>