-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmr.html
55 lines (45 loc) · 1.11 KB
/
mr.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<html>
<head>
<link rel="stylesheet" href="mystyle.css">
<title>BANK</title>
</head>
<body>
<h1 align="center">BANK</h1>
<a href="account.html"><button><b>My Accounts</b></button></a>
<a href="ft.html"><button><b>Fund Transfer</b></button></a>
<a href="mr.html"><button style="background-color:gray; color:black"><b>Mobile Recharge</b></button></a>
<a href="contact.html"><button><b>Contact Us</b></button></a>
<hr>
<table align="center" cellpadding = "10">
<tr>
<td>Select Operator</td>
<td>
<select name="operators" id="operators">
<option value="Aircel">Aircel</option>
<option value="MSNL">MSNL</option>
<option value="Rio">Rio</option>
<option value="Idea">Idea</option>
</select>
</td>
</tr>
<tr>
<td>Mobile Number</td>
<td>
<input type="text" name="mob_no" maxlength="50" />
</td>
</tr>
<tr>
<td>Amount(in INR)</td>
<td>
<input type="text" name="amt" maxlength="50" />
</td>
</tr>
<tr>
<td colspan="2" align="center">
<button style="background-color:white;color:black;border:2px solid black;" type="button">Click to Proceed</button>
</td>
</tr>
</table>
</form>
</body>
</html>