-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfst2.html
More file actions
45 lines (44 loc) · 955 Bytes
/
fst2.html
File metadata and controls
45 lines (44 loc) · 955 Bytes
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
<html>
<body>
<form>
<table border="1" align="center">
<tr>
<th colspan="3"> ONLINE SHOPING</th></tr>
<tr>
<td rowspan="2"><img src="sm2.png" width=200 height=200 ></td>
<td>payment</td>
<td>
<input type="radio" name="payment" value="online"> online
<input type="radio" name="payment" value="ondelivery"> ondelivery
</td></tr>
<tr>
<td>total</td>
<td>
<label> 55555</label>
</td></tr>
<tr>
<td>Brand</td>
<td colspan="2">
<select>
<option>a</option>
<option>b</option>
<option>c</option>
</select>
</td></tr>
<tr>
<td>Accessories</td>
<td colspan="2">
<input type="checkbox" name="headset" value="headset">headset
<input type="checkbox" name="flipcover" value="flipcover">flipcover
</td></tr>
<tr>
<td colspan="2">
<input type="submit" name="buy" value="buy"> </td>
<td>
<a href="" >go back </a>
</td>
</tr>
</table>
</form>
</body>
</html>