-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvisit.php
38 lines (35 loc) · 1.5 KB
/
visit.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
<!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="sbs-holder">
<div class="sbs-container">
<div>
<h1>Visit us,</h1>
<p>You can find Cantor College via Google Maps. A map of Cantor College campus is available.</p>
</div>
<div>
<img src="assets/images/city-map.webp" alt="Map of cantor college campus" />
</div>
</div>
</div>
<div style="width:95%;margin:auto;">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2380.120423531254!2d-1.4703554871476716!3d53.37689477218265!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x48798338bc5a1d13%3A0xad74824d1242efa8!2sCantor%20College!5e0!3m2!1sen!2suk!4v1700873504363!5m2!1sen!2suk" style="border:0;" width="100%" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<?php
// Footer
include("includes/footer.php");
?>
</body>
</html>