-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (61 loc) · 2.5 KB
/
index.html
File metadata and controls
74 lines (61 loc) · 2.5 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!--Question 03-->
<!--<form action="Servlet" method="POST">
<table border="0">
<tr>
<td>First Name </td>
<td><input type="text" name="Fname" value="" /></td>
</tr>
<tr>
<br>
<br>
<td>SurName </td>
<td><input type="text" name="Sname" value="" /></td>
</tr>
<br>
<tr>
<td>Submit </td>
<td><input type="submit" value="Submit" /></td>
</tr>
</form>
</table>-->
<!--Question 04 and Question 05-->
<form action="Servlet" method="POST">
<table border="0">
<tr>
<td>Number 1: </td>
<td><input type="text" name="n1" value="" /></td>
</tr>
<tr>
<td>Number 2: </td>
<td><input type="text" name="n2" value="" /></td>
</tr>
<tr>
<td><input type="submit" value="Add" name="Operation" /></td>
<td><input type="submit" value="Sub" name="Operation" /></td>
<td><input type="submit" value="Mul" name="Operation" /></td>
<td><input type="submit" value="Div" name="Operation" /></td>
</tr>
<tr>
<!--<td>Total</td>
<td><input type="text" name="Total" value="" /></td>
-->
<td>Output</td>
<td><input type="text" name="Output" value="" /></td>
</tr>
</table>
</form>
</body>
</html>