This repository was archived by the owner on May 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (51 loc) · 2.63 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/bootstrap.css">
<link href="https://cdn.datatables.net/1.10.15/css/jquery.dataTables.min.css" rel="stylesheet">
<link href="https://cdn.datatables.net/colreorder/1.3.2/css/colReorder.dataTables.min.css" rel="stylesheet">
<link href="https://cdn.datatables.net/responsive/2.1.0/css/responsive.dataTables.min.css" rel="stylesheet">
<link href="https://cdn.datatables.net/buttons/1.2.1/css/buttons.dataTables.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.2/umd/popper.min.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://cdn.datatables.net/1.10.15/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/colreorder/1.3.2/js/dataTables.colReorder.min.js"></script>
<script src="https://cdn.datatables.net/responsive/2.1.0/js/dataTables.responsive.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/bootstrap.js"></script>
<script src="/js/tether.min.js"></script>
<script type="text/javascript" src="/js/functions.js"></script>
<link rel="stylesheet" href="/css/main.css">
<meta charset="UTF-8">
<title>Gene Search!</title>
</head>
<div id="container" style="min-width: 310px; height: 10px; margin: 0 auto"></div>
<body>
<div class="nav">
<div class="container">
<ul>
<li>
<a href="mailto:novero.a@gmail.com?Subject=Hello%20from%20GeneSearchAPI" target="_top"
data-toggle="tooltip" data-placement="right" title="Email the Author">Contact Me</a></li>
<li><a href="http://bd2k-picsure.hms.harvard.edu/more.html" data-toggle="tooltip"
title="Check OUt the OnCOBK API">Learn More about the Harvard API</a></li>
</ul>
</div>
</div>
<div class="jumbotron">
</div>
<form class="myform" method="GET">
<p>
<label for="gene">Investigate a Gene</label>
<input id="gene" type="int" name="gene" value=673>
<button id='searchbutton' class="search" type="button" data-toggle="tooltip" data-placement="right"
title="Enter EntrezID & Click to Explore!"><span>Search</span></button>
</p>
</form>
<div id="chartContainer" style="height: 370px; width: 100%;"></div>
<table id="geneTable" class="display" width="100%"></table>
<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
</body>
</html>