-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathAmazonHome.html
More file actions
71 lines (71 loc) · 3.5 KB
/
AmazonHome.html
File metadata and controls
71 lines (71 loc) · 3.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
<!DOCTYPE html>
<html>
<head>
<title>Shopping | Amazon</title>
</head>
<body>
<table frame="void" border="1" width="800" align="center" cellspacing="20" cellpadding="20">
<tr height="50" align="center">
<td>
<img src="Images/head.PNG" width="800" height="50">
</td>
</tr>
<tr bgcolor="maroon" align="center">
<td><b><font color="white" size="4">Offered Products</font></b></td>
</tr>
<tr>
<td>
<table rules="all" width="800" align="center">
<tr>
<td>
<table cellspacing="10" cellpadding="10" align="center">
<tr bgcolor="yellow">
<td align="center">Samsung TV</td>
</tr>
<tr>
<td align="center">
<img src="Images/tv.jpg" width="200" height="200">
</td>
</tr>
<tr bgcolor="lightgreen">
<td align="center">₹ 45,000.56 /-</td>
</tr>
</table>
</td>
<td>
<table cellspacing="10" cellpadding="10" align="center">
<tr bgcolor="yellow">
<td align="center">Mobile</td>
</tr>
<tr>
<td align="center">
<img src="Images/mobile.jpg" width="200" height="200">
</td>
</tr>
<tr bgcolor="lightgreen">
<td align="center">₹ 15,000.56 /-</td>
</tr>
</table>
</td>
<td>
<table cellspacing="10" cellpadding="10" align="center">
<tr bgcolor="yellow">
<td align="center">Nike Casuals</td>
</tr>
<tr>
<td align="center">
<img src="Images/shoe.jpg" width="200" height="200">
</td>
</tr>
<tr bgcolor="lightgreen">
<td align="center">₹ 5,000.56 /-</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>