-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetbank.html
85 lines (52 loc) · 1.34 KB
/
netbank.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<html>
<head>
<title>Net Banking</title>
<style type="text/css">
.tb
{
background-color:cyan;
border-radius:12px;
}
.in
{
background-color:white;
border-radius:12px;
}
.bt
{
border-radius:12px;
}
.fd{
width:275px;
background-color:pink;
}
</style>
</head>
<body>
<center>
<fieldset class="fd">
<legend><b>Net Banking</b></legend>
<table align="center" class="tb" width="300" border = "0" cellspacing = "0" cellpadding = "0">
<form action="bank" method="post">
<tr>
<td> Name</td>
<td><input type="Text" name="name" placeholder=" Enter the name on the card" class="in"></td>
</tr>
<td>Card number</td>
<td>
<input type="Text" name="cardno" placeholder=" Enter your card number" class="in"></td>
</tr>
<tr>
<td>Bank Name</td>
<td><input type="Text" name="bankname" placeholder=" Enter your bank name" class="in"></td>
</tr>
<tr><td><input type="submit" class="bt" value="Submit"></td>
<td><input type="reset" value="Reset" class="bt"></td></tr>
</table>
<br>
<a href = "welcome.html" >Cancel</a>
</form>
</fieldset>
</center>
</body>
</html>