-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjs21.html
More file actions
31 lines (25 loc) · 721 Bytes
/
js21.html
File metadata and controls
31 lines (25 loc) · 721 Bytes
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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="interest.css"/>
<style>
h3{
}
</style>
</head>
<body>
<div align="center">
<h2>Temperature Convertor</h2>
<input type="number" id="c" placeholder="Degree Celsius" oninput="f.value=c.value*9/5+32">
<h3>=</h3>
<input type="number" id="f" placeholder="Fahrenheit" oninput="c.value=(f.value-32)*5/9">
</div>
<hr>
<div align="center">
<h2>Speed Convertor</h2>
<input type="number" id="km" placeholder="Kilo Meters" oninput="m.value=km.value/1.6">
<h3>=</h3>
<input type="number" id="m" placeholder="Miles" oninput="km.value=m.value*1.6">
</div>
<body>
<html>