-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcalc_final.html
37 lines (33 loc) · 1.49 KB
/
calc_final.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body style="background-image:url('http://www.allaboutlean.com/wp-content/uploads/2015/03/Abacus-Color.jpg') " >
<center><form method='post' action='/display'>
<h1 style="color:white; font-family:Comic Sans MS;">Calculator</h1>
<br>
<br>
<font size='5px'>Number 1:    <input type='number' name='num1'></font>
<br>
<br>
<br>
<font size='5px'>Number 2:    <input type='number' name='num2'>
<br>
<br>
<br>
<font size='5px'>Arithmetic or Special function:
<br>
<br>
<font size='5px'><br><input type='radio' name='func' value='ar'>Arithmetic
<br>
<font size='5px'><br><input type='radio' name='func' value='sp'>Special Function
<br>
<br>
<font size='5px'>Choose an operation:    <select name='select1'><option>+</option><option>-</option><option>*</option><option>/</option></select> <select name='select2'><option>sin</option><option>cos</option><option>tan</option><option>x2</option><option>sqrt</option><option>exp</option></select></pre>
<br>
<br>
<br><input type='submit' value='Submit'>
</form> </center>
</body>
</html>