This repository has been archived by the owner on Nov 18, 2019. It is now read-only.
forked from acossa/botrytis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.php
112 lines (101 loc) · 4.53 KB
/
welcome.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>BcDb</title>
<link rel="stylesheet" type="text/css" href="./css/header.css">
<link rel="stylesheet" type="text/css" href="./css/content.css">
<link rel="stylesheet" type="text/css" href="./css/footer.css">
<link rel="stylesheet" type="text/css" href="./DataTables/datatables.css">
<script type="text/javascript" src="DataTables/jQuery-3.3.1/jquery-3.3.1.js"></script>
<script type="text/javascript" charset="utf8" src="./DataTables/datatables.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
<div class="heading">
Botrytis Cynerea Database
</div>
<div class="main">
<!-- <div class="main_menu"> -->
<input id="tab1" type="radio" name="tabs" checked>
<label class="menu" for="tab1">Welcome</label>
<input id="tab2" type="radio" name="tabs">
<label class="menu" for="tab2">Tools description</label>
<input id="tab3" type="radio" name="tabs">
<label class="menu" for="tab3">Access BcDb</label>
<input id="tab4" type="radio" name="tabs">
<label class="menu" for="tab4">Contact</label>
<!-- </div> -->
<div class="content">
<!-- Welcome -->
<div id="content1">
<p>
Welcome to BcDb
</p>
</div>
<!-- Infos -->
<div id="content2">
<h1>
How to use BcDb
</h1>
<div style="width:50%">
<p>
<ul>
<li>
This website presents omics data from the fungus <i>Botrytis cinerea</i>, more commonly called gray mould. You can browse the database by clicking on the "Access BcDb" menu. In that section you will be able to search the database by using a specific gene locus, or browse by region or by protein name.
</li>
<li>
If you want more informations about <i>Botrytis cinerea</i>, here is its <a href="https://en.wikipedia.org/wiki/Botrytis_cinerea" target="_blank">Wikipedia page</a>. If you want to browse recent articles you can clic on one of the following links:
<ul>
 <li>
 <a href="https://www.ncbi.nlm.nih.gov/pubmed/?term=botrytis+cinerea" target="_blank">PubMed<a>
</li>
 <li>
 <a href="https://www.researchgate.net/search?q=botrytis%20cinerea" target="_blank">ResearchGate<a>
</li>
 <li>
 <a href="https://scholar.google.fr/scholar?hl=fr&as_sdt=0%2C5&as_vis=1&q=botrytis+cinerea&btnG=" target="_blank">Google Scholar<a>
</li>
</ul>
</li>
</ul>
</p>
</div>
</div>
<!-- Queries -->
<div id="content3">
<p>
<?php
include('query_form.php'); /*Edit 'query.php' */
?>
</p>
</div>
<!-- Contact -->
<div id="content4">
<p>
If you have any enquiries please feel free to <a href="mailto:[email protected]?subject=ProjetWeb">contact us</a>.</br>
</p>
</div>
</div>
</div>
<div class="footer">
<!-- <table>
<tr>
<th>
Documentation
<ul>
<li>
About <i>Botrytis cynerea</i> -->
<p>Botrytis cinerea Database 2019</p>
<!-- </li>
</ul>
</th>
</tr>
</table> -->
</div>
</body>
</html>