-
Notifications
You must be signed in to change notification settings - Fork 0
/
conv.html
48 lines (26 loc) · 1000 Bytes
/
conv.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
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>Converter</title>
<meta name="viewport" content="initial-scale=1.0, width=device-width">
<link rel="stylesheet" type="text/css" href="css/calc.css" />
<script src="JavaScript/conv.js"></script>
</head>
<body>
<header> CONVERTER </header>
<nav>
<a href="home.html" title="Use calculator" class="nav_links">Home</a>   
<a href="calc.html" title="Go to Home Page" class="nav_links">Calculator</a>
</nav>
<div style="background-color: coral;height:500px;width: 1185px;">
<b>Weights: </b><br><br>
Enter weight in kgs:
<input type="text" id="value_in_KG" value="0"><br>
<br>
Enter weight in lbs:
<input type="text" id="value_in_lbs" value="0"><br>
<br>
<button onclick={convertWeight()}>Convert</button>
</div>
</body>
</html>