-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRepeats.php
56 lines (44 loc) · 1.42 KB
/
Repeats.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>SARS-CoV2 Page</title>
<link rel="stylesheet" href="bootstrap.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- <?php include "Navigation.php";?> -->
<!-- <?php include "ProtienInfo.php";?> -->
<style>
.btn
{
margin-top: 25px;
margin-right: 5px;
}
.search-header
{
padding-left: 10px;
}
.search-body
{
background-color: lightgrey;
}
.panel-body
{
background-color: white;
}
</style>
</head>
<body class="search-body">
<h4 class="search-header">Repeats</h4>
<div class="panel-body">
<div id="searchgrid">
<div class="form-group" style="height:10%; width:100%;">
<div class="row">
<fieldset id="Gene_row">
<div class="col-md-2">
<label for="Repeat">Type in a Repeat</label>
<input list = "repeatlist" id="Repeat" type="text" class="form-control" />
<datalist id ="repeatlist">
<option value="ACGAAC">
</div>
</html>