-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitems.html
80 lines (66 loc) · 3.25 KB
/
items.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
78
79
80
<!DOCTYPE html>
<html>
<head>
<title> Items </title>
<center> <table border = "5" style="width:100%; color: red">
<tr>
<th style="font-size: 25px; color: red"> M-Mobiles Online Store </th>
<th style="color:white; font-size: 20px"><a href ="Homepage.html"> Homepage </a></th>
<th style="color:white; font-size: 20px"> <a href ="UserProfile.html"> Cart </a></th>
<th style="color:white; font-size: 20px"><a href ="login.html"> Sign-up </a></th>
</tr>
</table> </center>
</head>
<body style="background-color: black">
<h1 style="color: goldenrod; font-size: 60px"> <center> Our Products </center> </h1>
<h2 style="color: goldenrod; font-size: 50px"> <center> Bringing you the best in market! </center></h2>
<h6 style="color: white; font-size: 20px"><center> Click on the images for further details</center> </h6>
<br>
<center> <table border="6" style="width:80%">
<tr>
<th style="color:cyan; font-size: 20px "> Item Number </th>
<th style="color:cyan; font-size: 20px "> Model Name </th>
<th style="color:cyan; font-size: 20px "> Brand </th>
<th style="color:cyan; font-size: 20px "> Price </th>
<th style="color:cyan; font-size: 20px "> Image </th>
</tr>
<tr>
<td style="color:cyan; font-size: 20px "> XS-apl </td>
<td style="color:cyan; font-size: 20px "> iPhone XS Max </td>
<td style="color:cyan; font-size: 20px "> Apple </td>
<td style="color:cyan; font-size: 20px "> PKR 167,900 </td>
<td style="color:cyan; font-size: 20px "> <a href ="Details.html"> <img src ="xsmax.jpg" width="120" height ="120"> </a> </td>
</tr>
<tr>
<td style="color:cyan; font-size: 20px "> 8-apl </td>
<td style="color:cyan; font-size: 20px "> iPhone 8 </td>
<td style="color:cyan; font-size: 20px "> Apple </td>
<td style="color:cyan; font-size: 20px "> PKR 108,600 </td>
<td style="color:cyan; font-size: 20px "> <a href ="Details.html"> <img src ="iphone8.jpg" width="120" height ="120"> </a> </td>
</tr>
<tr>
<td style="color:cyan; font-size: 20px "> OP-7pro </td>
<td style="color:cyan; font-size: 20px "> 7 Pro </td>
<td style="color:cyan; font-size: 20px "> One Plus </td>
<td style="color:cyan; font-size: 20px "> PKR 112,500 </td>
<td style="color:cyan; font-size: 20px "> <a href ="Details.html"> <img src ="7pro.jpg" width="120" height ="120"> </a> </td>
</tr>
<tr>
<td style="color:cyan; font-size: 20px "> m20-hwi </td>
<td style="color:cyan; font-size: 20px "> Mate 20</td>
<td style="color:cyan; font-size: 20px "> Huawei </td>
<td style="color:cyan; font-size: 20px "> PKR 122,000 </td>
<td style="color:cyan; font-size: 20px "> <a href ="Details.html"> <img src ="mate20.jpg" width="120" height ="120"> </a> </td>
</tr>
<tr>
<td style="color:cyan; font-size: 20px "> s10-smg </td>
<td style="color:cyan; font-size: 20px "> s-10</td>
<td style="color:cyan; font-size: 20px "> Samsung </td>
<td style="color:cyan; font-size: 20px "> PKR 144,999 </td>
<td style="color:cyan; font-size: 20px "> <a href ="Details.html"> <img src ="s10.jpg" width="120" height ="120"> </a> </td>
</tr>
</table>
</center>
</body>
<footer style="color:gold"><center>By Maaz Ali Nadeem (i20-0452) & Shehryar Sohail (i20-0429) </center></footer>
</html>