-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTemp.html
34 lines (30 loc) · 1.22 KB
/
Temp.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
<!DOCTYPE html>
<html>
<head>
<title>
Temperature Converter
</title>
<link rel="stylesheet" href="sttemp.css">
</head>
<body>
<form name="circle">
<h2>CELSIUS TO FAHRENHEIT</h2>
<br/>
<input class="box" type="text" name="radius" placeholder="Enter the Celsius Value" size="20"><br /><br/>
<input class="button-tool" type="button" value="Convert to Fahrenheit" onClick="calculateAC()"><br /><br/>
<input type="text" name="acc" class="box" placeholder="In Fahrenheit" size="20"><br /><br/>
<input class="button-tool1" type="reset" value="Reset" />
<br/><br/>
</form>
<form name="fc">
<h2>FAHRENHEIT TO CELSIUS</h2>
<br/>
<input type="text" name="fahrenh" class="box" placeholder="Value at Fahrenheit" size="20"><br /><br/>
<input class="button-tool" type="button" value="Convert to Celsius" onClick="calculateFC()"><br /><br/>
<input type="text" name="accc" class="box" placeholder="In Celsius" size="20"><br /><br/>
<input class="button-tool2" type="reset" value="Reset" />
<br/><br/>
</form>
<script src="jtemp.js"></script>
</body>
</html>