-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgc_at-content.html
30 lines (24 loc) · 967 Bytes
/
gc_at-content.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
<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>
<body>
<!-- Navbar -->
<div id="navbar">
</div>
<!-- GC and AT Content of DNA -->
<div class="container" id="gc-at-content">
<p style="text-align:center;font-size:26px;">GC & AT Content of DNA</p>
<h6>Enter the DNA Sequence</h6>
<input type="text" id="dna" name="dna" onkeypress="dnaSequenceValid()" required><br>
<input type="button" class="customButton" value="Submit" onclick="findGC_ATcontent()"><br><br>
<p id="gc_at-content" style="color:blue;"></p>
</div>
</body>
</html>