-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
69 lines (59 loc) · 2.75 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>About - GExplore</title>
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="icon" href="assets/favicon.png" type="image/png">
<!--
Open Sans Google Font: https://fonts.google.com/specimen/Open+Sans
Open Sans is a widely used sans-serif font known for its clarity and neutrality, making it an excellent choice for scientific content.
-->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<div id="header">
<a href="home.html">
<img src="assets/GExplore_logo.png" alt="GExplore Logo" class="logo">
</a>
<div id="topnav">
<ul>
<li class="active"><a href="home.html"><span class="text">Home</span></a></li>
<li><a><span class="text">Search</span> <span class="angle"></span></a>
<ul class="dropdown">
<li><a href="gene_search.html">Genes</a></li>
<li><a href="mutation_search.html">Mutations</a></li>
<li><a href="protein_search.html">Proteins</a></li>
<li><a href="expression_stage_search.html">Stage Expressions</a></li>
<li><a href="#">Tissue Expressions</a></li>
<li><a href="#">Embryo Expressions</a></li>
</ul>
</li>
<li><a><span class="text">Tools</span> <span class="angle"></span></a>
<ul class="dropdown">
<li><a href="#">Compare</a></li>
<li><a href="#">Convert</a></li>
</ul>
</li>
<li><a href="help.html"><span class="text">Help</span></a></li>
<li><a href="about.html"><span class="text">About</span></a></li>
</ul>
</div>
</div>
<div id="intro">
<div class="fl">
<h2><i>GExplore</i></h2>
<p>A tool for large-scale mining of data related to gene or protein function in <i>C. elegans</i>.</p>
<p class="readmore"><a href="#">LEARN MORE</a></p>
</div>
</div>
</div>
<div style="height: 50px;"></div>
<!--
<footer>
<p>Maintained by <a href="mailto:[email protected]">H. Hutter</a> | <a href="http://www.sfu.ca/">Simon Fraser University</a></p>
</footer>
-->
</body>
</html>