-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
55 lines (46 loc) · 1.72 KB
/
contact.html
File metadata and controls
55 lines (46 loc) · 1.72 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
<!-- contact.html -->
<!-- base.html (static-friendly) -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SHIFT</title>
<script src="https://code.jquery.com/jquery-3.7.1.min.js" crossorigin="anonymous"></script>
<!--Bootstrap CSS CDN File-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css">
<!--Common Styles-->
<div id="styles-placeholder"></div>
<!-- Page specific styles can go here -->
</head>
<body>
<!--Header-->
<div id="header-placeholder"></div>
<!--Navbar-->
<div id="navbar-placeholder"></div>
<!-- Main content will be inserted here -->
<main>
<!-- Contact Section -->
<section class="py-3 py-md-5">
<div class="container">
<!-- Title and Description -->
<div class="row justify-content-center">
<div class="col-12 col-md-10 col-lg-8 col-xl-7 col-xxl-6 text-center">
<h2 class="mb-4 display-5">Contact Us</h2>
<p class="text-secondary mb-5">The best way to contact us is to write us at <a href="mailto:dublinlivinglab@ucd.ie">dublinlivinglab@ucd.ie</a>.
<br> We will get back to you as soon as possible.
</p>
<hr class="w-50 mx-auto mb-5 border-dark-subtle">
</div>
</div>
</div>
</section>
</main>
<!--Footer-->
<div id="footer-placeholder"></div>
<!-- JavaScript -->
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="./static/js/main.js"></script>
</body>
</html>