forked from Abhijeetbyte/MgCalculator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (62 loc) · 2.67 KB
/
Copy pathindex.html
File metadata and controls
74 lines (62 loc) · 2.67 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
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<script async src="Mgjava.js"></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" href="iconap.webp" type="image/icon">
<title>MgCalculator</title>
</head>
<body>
<center>
<h1>Mg Calculator</h1>
<hr color="#E5C480" width=90%>
<h3>Magnesium Calculator</h3>
<p>Enter your values below and press <i>Calculate</i> button:</p>
<form name="calcform">
<table class="calc">
<tr>
<td><label for="a">Enter ml of EDTA used in CaCo3</label></td>
<td><input type="number" step="any" id="Amount1" name="a" class="intext" autofocus></td>
</tr>
<tr>
<td><label for="a">Enter ml of EDTA used in Ca</label></td>
<td><input type="number" step="any" id="Amount2" name="b" class="intext"></td>
</tr>
<tr>
<td><label for="a">Enter amount of sample in ml</label></td>
<td><input type="number" step="any" id="Amount3" name="c" class="intext"></td>
</tr>
<tr>
<td><label>
<h3> Magnesium (mg/l)</h3>
</label></td>
<td>
<font face="arial" color="#d6a658">
<h3 type="number" id="output"></h3>
</font>
</td>
</tr>
<tr>
<td> </td>
<td colspan="2">
<button type="button" title="Calculate" class="btn" onclick="calculateMg()"> Calculate</button>
<button type="reset" title="Reset" class="btn"> Reset</button>
</td>
</tr>
</table>
</form>
<footer>
<a href="https://github.com/4BH1J337/MgCalculator" target="_blank"><button type="button" title="About"
class="abt">About</button></a>
<a href="mailto:abhijeetkr.sci@gmail.com"><button type="button" title="Feedback" class="fdback">
Feedback</button></a>
<div class="footer-bottom">
<p>copyright ©2021 MgCalculator. designed by <span>Abhijeet kumar</span></p>
</div>
</footer>
</center>
</body>
</html>