-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (73 loc) · 2.39 KB
/
index.html
File metadata and controls
73 lines (73 loc) · 2.39 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
<!DOCTYPE html>
<html>
<head>
<title>Mvumilivu Online Store</title>
</head>
<body>
<h1 align="center">Mvumilivu Online Store</h1>
<p align="center">
Welcome to <b>Mvumilivu Online Store</b>, your trusted online shop offering a wide
variety of quality products including electronics and furniture at affordable prices.
We are committed to providing reliable products and excellent customer service.
</p>
<hr>
<h2>Available Products</h2>
<table border="2" cellpadding="10" cellspacing="0" width="100%">
<tr>
<th>Product Image</th>
<th>Product Name</th>
<th>Category</th>
<th>Quantity</th>
<th>Price (Ksh)</th>
</tr>
<tr>
<td align="center">
<img src="images/laptoppro.jpeg" alt="Laptop" width="60" height="60">
</td>
<td>Laptop Pro</td>
<td rowspan="2">Electronics</td>
<td align="center">10</td>
<td align="right">75,000</td>
</tr>
<tr>
<td align="center">
<img src="/images/smartx.jpeg" alt="Smartphone" width="60" height="60">
</td>
<td>Smart X</td>
<td align="center">15</td>
<td align="right">40,000</td>
</tr>
<tr>
<td align="center">
<img src="/images/office-chair.jpg" alt="Office Chair" width="60" height="60">
</td>
<td>Office Chair</td>
<td rowspan="2">Furniture</td>
<td align="center">5</td>
<td align="right">12,000</td>
</tr>
<tr>
<td align="center">
<img src="/images/dinningtable.jpeg" alt="Dining Table" width="60" height="60">
</td>
<td>Dining Table</td>
<td align="center">3</td>
<td align="right">35,000</td>
</tr>
<tr>
<td colspan="3"><b>TOTAL PRODUCTS</b></td>
<td align="center"><b>33</b></td>
<td align="right"><b>157,000</b></td>
</tr>
</table>
<h2>Our Location</h2>
<p>Visit us at our physical store location shown on the map below:</p>
<iframe
src="https://www.google.com/maps?q=Nairobi,Kenya&output=embed"
width="100%"
height="300"
allowfullscreen=""
loading="lazy">
</iframe>
</body>
</html>