-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
86 lines (70 loc) · 3.1 KB
/
contact.html
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
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<!-- specify language (british english) and reading direction (left to right) -->
<html lang="en-gb" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- descriptive sentence that shows up in google search results -->
<meta name="description" content="Documentation on hardware, software and experimental implementation of molecular orientation fluorescence microscopy using polarisation cameras.">
<!-- title of the page (e.g. shown in tab or when bookmarked) -->
<title>Contact | POLCAM</title>
<!-- favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon_io/favicon-16x16.png">
<link rel="manifest" href="images/favicon_io/site.webmanifest">
<!-- main stylesheet -->
<link rel="stylesheet" href="stylesheets/styles.css">
<!-- mathjax for math notation -->
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script type="text/javascript" id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js">
</script>
</head>
<body>
<div class="wrapper">
<header>
<div class="navigationbar">
<!-- logo on top left of navigation bar -->
<div class="logo_navigationbar">
<a href="index.html">
<img alt="logo" src="./images/logo_polcam.svg" width="170px">
</a>
</div>
<!-- 'Contact' link on top right of navigation bar -->
<a href="contact.html">Contact</a>
<a href="protocols.html">Protocols</a>
<!-- 'Software' dropdown on top right of navigation bar -->
<div class="dropdown">
<button class="dropbtn">Software
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="software_polcam_sr.html">POLCAM-SR</a>
<a href="software_polcam_live.html">POLCAM-Live</a>
<a href="software_napari_polcam.html">napari-polcam</a>
</div>
</div>
<!-- 'Hardware' and 'Home' link on top right of navigation bar -->
<a href="hardware.html">Hardware</a>
<a href="index.html">Home</a>
</div>
</header>
<main>
<section>
<h1>Contact</h1>
<p>For general questions about POLCAM, contact:
<a href="mailto:sl591@cam.ac.uk,eb758@cam.ac.uk?subject=POLCAM general | ...">sl591@cam.ac.uk</a>
</p>
<p>For technical questions about the hardware implementation and/or software, contact:
<a href="mailto:eb758@cam.ac.uk?subject=POLCAM technical | ...">eb758@cam.ac.uk</a>
</p>
</section>
</main>
</div>
</body>
<!--
<footer>
<p>Contact: eb758@cam.ac.uk</p>
</footer>
-->
</html>