-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
56 lines (50 loc) · 2.6 KB
/
about.html
File metadata and controls
56 lines (50 loc) · 2.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Brixton University</title>
<link rel="stylesheet" href="styles/about.css">
</head>
<body>
<header>
<img src="logo.jpg" alt="Brixton University Logo" class="logo">
<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 class="mission_vision">
<h2>Our Mission & Vision</h2>
<p><strong>Mission:</strong> To provide a transformative education that empowers students to become ethical leaders and global innovators. We are committed to fostering a diverse and inclusive community where knowledge is created, shared, and applied to solve the world's most pressing challenges.</p>
<p><strong>Vision:</strong> To be a globally recognized center of academic excellence, known for our innovative research, student-centered approach, and significant contributions to society.</p>
</section>
<section class="history">
<h2>Our Story</h2>
<p>Founded in 1995, Brixton University began as a small college focused on the liberal arts. Over the past century, we have grown into a world-class institution with a vibrant campus and a reputation for excellence in research and teaching. Our history is a testament to our enduring commitment to education and our continuous adaptation to a changing world.</p>
</section>
<section class="facts-figures">
<h2>By the Numbers</h2>
<ul>
<li><strong>Students:</strong> 15,000+ undergraduate and postgraduate students</li>
<li><strong>Faculty:</strong> A good student-to-faculty ratio</li>
<li><strong>Ranking:</strong> Ranked as top 1 University worldwide</li>
<li><strong>Alumni Network:</strong> A global network of over 100,000 alumni</li>
</ul>
</section>
<section class="Apply">
<h2>Ready to Join Us?</h2>
<a href="admissions.html" class="Apply">Apply Now</a>
</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>