-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpracticeLayout.html
More file actions
29 lines (29 loc) · 1.02 KB
/
practiceLayout.html
File metadata and controls
29 lines (29 loc) · 1.02 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Practice Layout</title>
<link rel="stylesheet" type="text/css" href=".\practiceLayout.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<script src=".\practiceLayout.js"></script>
</head>
<body onload="menuPopulate();">
<h2>Echo Dilution Tool</h2>
<form>
Plate map:
<select id="plateMaps"></select><br><br>
Dilution factor:
<input type="text" id="dilutionFactor" style="width:50px"><br><br>
Dilution points:
<input type="text" id="dilutionPoints" style="width:50px"><br><br>
Target volume (nL):
<input type="text" id="targetVolume" style="width:50px"><br><br>
Stock concentration (mM):
<input type="text" id="stockConc" style="width:50px"><br><br>
</form>
<button>Generate CSV(s)</button>
<!---<button onclick="displayPlateMap()">Display</button><br><br>
You have chosen the following plate map: <div id="displayZone"></div>--->
</body>
</html>