-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
39 lines (30 loc) · 1013 Bytes
/
contact.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
<?php
include "data/metadata.php";
include "scripts/utils.php";
include "header.php";
?>
<header class="page-header">
<h1>Contact us</h1>
</header>
<div class="row-fluid">
<div class="span8">
Please address all enquiries about the course to <a href="mailto:[email protected]">Dr Thomas Rawson and Dr Pablo Perez-Guzman</a>.
<hr>
<p><strong>Email :</strong> <a href="mailto:[email protected]">[email protected]</a></p>
<hr>
<strong>Post:</strong>
<br>
<address>
Department of Infectious Disease Epidemology,<br>
Imperial College London School of Public Health,<br>
White City Campus,<br>
80–92 Wood Lane,<br>
London W12 0BZ<br>
</address>
</div>
<div class="span4">
</div>
</div>
<?php
include "footer.php"
?>