forked from glycojones/ccp4-summer-school
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
73 lines (64 loc) · 2.06 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!doctype html>
<html>
<head>
<title>DLS-CCP4 Workshop</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/pierre_aller.jpg">
<p>
<b>Pierre Aller</b><br>
<a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
<div class="organiser">
<img width="200px" src="images/organisers/felicity_bertram.jpg">
<p>
<b>Felicity Bertram</b><br>
<a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
<div class="organiser">
<img width="200px" src="images/organisers/marco_mazzorana.jpg">
<p>
<b>Marco Mazzorana</b><br>
<a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
<div class="organiser">
<img width="200px" src="images/organisers/david_waterman.jpg">
<p>
<b>David Waterman</b><br>
<a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
<div class="organiser">
<img width="200px" src="images/organisers/graeme_winter.jpg">
<p>
<b>Graeme Winter</b><br>
<a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
</div>
</main>
<?PHP include("includes/sponsors.php"); ?>
</body>
</html>