-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.php
53 lines (50 loc) · 1.51 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!doctype html>
<html>
<head>
<title>CCP4-BCA Summer School 2023 (University of York, UK)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="styles/ccp4.css" />
<style>
.organiser {
display: flex;
flex-direction: column;
align-items: center;
}
</style>
</head>
<body>
<?PHP include("includes/banner.php"); ?>
<main>
<h2>Contact us</h2>
<p>
Feel free to contact any or all of the organisers
should you have any queries related to the school,
including registration, programme, or accommodation.
</p>
<div class="spaced">
<div class="organiser">
<img width="200px" src="images/organisers/johan_turkenburg.jpg">
<p>
<b>Johan Turkenburg</b><br>
<a href="mailto:johan.turkenburg@york.ac.uk">johan.turkenburg@york.ac.uk</a>
</p>
</div>
<div class="organiser">
<img width="200px" src="images/organisers/jon_agirre.jpg">
<p>
<b>Jon Agirre</b><br>
<a href="mailto:jon.agirre@york.ac.uk">jon.agirre@york.ac.uk</a>
</p>
</div>
<div class="organiser">
<img width="200px" src="images/organisers/paul_bond.jpg">
<p>
<b>Paul Bond</b><br>
<a href="mailto:paul.bond@york.ac.uk">paul.bond@york.ac.uk</a>
</p>
</div>
</div>
</main>
<?PHP include("includes/sponsors.php"); ?>
</body>
</html>