-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.82 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>convert this file to that</title>
<meta name="keywords" content="bioinformatics, fasta, bam, sam, convert, bedtools, bed">
<meta name="author" content="Vivek Rai">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Discover tools to convert your bioinformatics file from one format to other!">
<meta name="google" content="nositelinkssearchbox" />
<link rel="stylesheet" href="client.css" />
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<link rel="icon" href="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2016%2016'%3E%3Ctext%20x='0'%20y='14'%3E🦄%3C/text%3E%3C/svg%3E" type="image/svg+xml" />
</head>
<body class="wrapper">
<div class="container">
<div class="row query">
<p>Convert</p>
<span> <input class="input-this" type="text" autocomplete=off placeholder="this" oninput="this.style.width = (Math.max(this.value.length, 4)) + 'ch';"> </span>
<p> file </p> <p> to </p>
<span> <input class="input-that" type="text" autocomplete=off placeholder="that." oninput="this.style.width = (Math.max(this.value.length, 5)) + 'ch';"> </span>
</div>
<div class="row result"><ul class="item-list"></ul></div>
<div class="footer send-note">
<abbr title="Quickly lookup tools to convert one file format to another. Works only for bioinformatics tools.">what's this?</abbr> · <a href="https://forms.gle/QorQrnD5gMNWPykF8">missing something? tell me.</a> </span>
</div>
</div>
<script src="client.js"></script>
</body>
</html>