-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
57 lines (48 loc) · 2.12 KB
/
contact.html
File metadata and controls
57 lines (48 loc) · 2.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Brixton University - Contact Us</title>
<link rel="stylesheet" href="styles/contact.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>Contact Us</h2>
<p>We're here to help! Please feel free to reach out to us with any questions about admissions, academic programs, or campus life. You can contact us through the form below or by using the details provided.</p>
<form action="#" method="post">
<label for="name">Your Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Your Email:</label>
<input type="email" id="email" name="email" required>
<label for="subject">Subject:</label>
<input type="text" id="subject" name="subject" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="5" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<section class="contact-details">
<h2>General Contact Information</h2>
<p><strong>Address:</strong> 123 Brixton Road, London, UK</p>
<p><strong>Phone:</strong> +44 20 1234 5678</p>
<p><strong>Email:</strong> info@brixtonuniversity.ac.uk</p>
</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>