-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathshop.html
More file actions
83 lines (83 loc) · 2.67 KB
/
shop.html
File metadata and controls
83 lines (83 loc) · 2.67 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
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head> <title> Shopping Cart </title>
<style>
div {
border: 2px solid white;
margin:10px;
padding:10px;
height:450px;
background-color:white;
}
button {
border:2px solid white;
background-color:yellow;
}
</style>
</head>
<body bgcolor="gray">
<div>
<table align="center" border="0" width="800" cellspacing="10" cellpadding="10">
<tr bgcolor="lightcyan">
<td align="center" colspan="3">
<font size="5" color="darkcyan">
<b>
Amazon Shopping 50% Off
</b>
</font>
</td>
</tr>
<tr height="300" bgcolor="lightyellow">
<td>
<table align="center" border="1" cellspacing="5" cellpadding="5" frame="void">
<tr bgcolor="darkcyan">
<th> <font color="white"> Samsung TV </font> </th>
</tr>
<tr>
<td> <img src="Images/tv.jpg" width="200" height="200"> </td>
</tr>
<tr bgcolor="darkcyan">
<td align="center"> <font color="white" <b> ₹ 45,000/- </b> </font>
<button> Add to Cart </button>
</td>
</tr>
</table>
</td>
<td>
<table align="center" border="1" cellspacing="5" cellpadding="5" frame="void">
<tr bgcolor="darkcyan">
<th> <font color="white"> Nike Casuals </font> </th>
</tr>
<tr>
<td> <img src="Images/shoe.jpg" width="200" height="200"> </td>
</tr>
<tr bgcolor="darkcyan">
<td align="center"> <font color="white" <b> ₹ 6,000/- </b> </font>
<button> Add to Cart </button>
</td>
</tr>
</table>
</td>
<td>
<table align="center" border="1" cellspacing="5" cellpadding="5" frame="void">
<tr bgcolor="darkcyan">
<th> <font color="white"> Lee Cooper Boot </font> </th>
</tr>
<tr>
<td> <img src="Images/shoe1.jpg" width="200" height="200"> </td>
</tr>
<tr bgcolor="darkcyan">
<td align="center"> <font color="white" <b> ₹ 4,000/- </b> </font>
<button> Add to Cart </button>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="3" bgcolor="lightcyan" align="center"> © copyright Amazon 2019 </td>
</tr>
</table>
</div>
</body>
</html>