-
Notifications
You must be signed in to change notification settings - Fork 0
/
Calculator
25 lines (25 loc) · 1.08 KB
/
Calculator
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Calculator</title>
</head>
<body>
<font size="20" color="blue">Calculator</font><br/>
<img src="calculator.jpg"
width="400" height="300" /><br/>
<div>
<label for="input1"> input1 </label> <input type="number" name= "input1"/><br/>
<label for="input2"> input2 </label> <input type="number" name="input2"/><br/>
<label for="select operation">Select Operation</label>
<select name="operation">
<option value="Select..">Select..</option>
<option value="ADD">ADD</option>
<option value="SUBTRACT">SUBTRACT</option>
<option value="MULTIPLY">MULTIPLY</option>
<option value="DIVIDE">DIVIDE</option>
</select>
</div>
<img src="calc.jpg" alt="caclulate" height="80" width="80" />
</body>
</html>