-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (29 loc) · 1.22 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
<html>
<head>
<title>Nucleic Acid Analysis</title>
<link rel="icon" href="assets/img/favicon.ico" sizes="16x16" type="image/png">
<link rel="stylesheet" href="assets/css/materialize.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<script src="assets/js/jquery.js"></script>
<script src="assets/js/custom.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<div class="w3-black">
<div class="w3-container">
<h4 style="color:#FFFFFF;margin-top:24px;margin-left: 54px;">Nucleic Acid Analysis</h4>
</div>
</div>
<body>
<!-- Home Menu -->
<div class="container">
<ol style="color:green;list-style-type:disc;padding-top:20px;padding-left:70px">
<li><a href="nucleotide-count.html">Nucleotide Count of DNA</a></li><br>
<li><a href="dna-to-rna.html">Transciption of DNA</a></li><br>
<li><a href="gc_ac-content.html">Find GC and AT Content of DNA</a></li><br>
<li><a href="dna-complement.html">Complement of DNA</a></li><br>
<li><a href="point-mutation-count.html">Find Hamming Distance of DNAs</a></li><br>
<li><a href="/rna-to-protein.html">Translation of RNA</a></li>
</ol>
</div>
</body>
</html>