-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (28 loc) · 851 Bytes
/
index.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
<!DOCTYPE html>
<html>
<body>
<h1>The input element</h1>
<form>
<label>Enter Temperature in celsius: </label>
<input type="text" id="tempC">
<button type="button" onclick="tempInFar()">Check</button>
<p>Temp in Farenheit: <span id="tempCF"></span> F
</p>
<label>Enter Temperature in farenheit: </label>
<input type="text" id="tempF">
<button type="button" onclick="tempInCel()">Check</button>
<p>Temp in Celcius: <span id="tempFC"></span> C
</p>
</form>
<form>
<label>First number:</label>
<input type="text" id="fnum"><br><br>
<label>Last number:</label>
<input type="text" id="lnum"><br><br>
<button type="button" onclick="multiply()">Multiply</button>
<button type="button" onclick="divide()">Divide</button>
<p>The result is: <span id="pname"></span>
</p>
</form>
</body>
</html>