-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-us.php
59 lines (44 loc) · 2.94 KB
/
contact-us.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
<!DOCTYPE html>
<?php
include 'config.php';
?>
<html>
<head>
<?php
$title = "Contact Us - CoVis";
include 'head_covis.php'
?>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link type="text/css" rel="stylesheet" href="./css/menu.css">
<link type="text/css" rel="stylesheet" href="./css/main.css">
<link type="text/css" rel="stylesheet" href="./css/font-awesome.min.css">
<script type="text/javascript" src="./lib/menu.js "></script>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
</head>
<body class="generalpage">
<header>
<?php include('menu.php'); ?>
</header>
<div class="page">
<div class="page-section">
<h1 class="page-headline">Contact us</h1>
<h4 class="question">For subject-matter experts who want to contribute to CoVis</h4>
<p class="paragraph-style">You can contribute to CoVis in a number of ways:</p>
<ul class="paragraph-style list-style">
<li>To propose research resources or provide feedback on CoVis, please <a target="_blank" href="https://forms.gle/X5VXanrxTuweKYfF9">fill out this short form</a>.</li>
<li>If you would like to create your own collections and interpretations of research findings around key issues, such as whether a drug is effective, we suggest creating a ReFigure. A ReFigure is a user-generated collection of figures from different scientific publications that can be included in the knowledge map.<br>
You can <a target="_blank" href="https://refigure.org/signup/">sign up as a ReFigure user here</a>. Once you have signed up, you can find a tutorial of <a target="_blank" href="https://www.youtube.com/watch?v=FxGLRB6y0tc">how to create ReFigure collections here</a>. After you have created your coronavirus related ReFigure, please send us an email at <a href="mailto:[email protected]">[email protected]</a> to begin a discussion with us.
</li>
</ul>
<p class="paragraph-style">
The curation team is led by immunologists and ReFigure founders Dr. Girija Goyal and Dr. James Akin. If you have any more questions on how to contribute, please get in touch with them at <a href="mailto:[email protected]">[email protected]</a>.
</p>
<h4 class="question">All other inquiries</h4>
<p class="paragraph-style">
Please get in touch with team Open Knowledge Maps at <a href="mailto:[email protected]">[email protected]</a>.
</p>
</div>
</div>
<?php include('footer.php') ?>
</body>
</html>