-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.html
65 lines (62 loc) · 1.5 KB
/
services.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="shortcut icon"
href="./images/MAFRICAN CURATIONS.jpg"
type="image/x-icon"
/>
<title>Document</title>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<h1>Our Services</h1>
<p>
We offer a wide range of products and services tailored to meet your
needs.
</p>
<!-- Table with service information -->
<h2>Service Information</h2>
<table border="1">
<tr>
<th>Product ID</th>
<th>Product Name</th>
<th>Posted Date</th>
<th>Product Type</th>
</tr>
<tr>
<td>001</td>
<td>Web dev.</td>
<td>23-08-24</td>
<td>Technology</td>
</tr>
<tr>
<td>002</td>
<td>Photography</td>
<td>24-08-24</td>
<td>Digital arts</td>
</tr>
<tr>
<td>003</td>
<td>Product design</td>
<td>25-08-24</td>
<td>Design</td>
</tr>
<tr>
<td>004</td>
<td>Creative consulting</td>
<td>26-08-24</td>
<td>Consulting</td>
</tr>
</table>
<!-- Navigation Links -->
<nav>
<a href="index.html">Home</a> | <a href="aboutus.html">About Us</a> |
<a href="contactus.html">Contact Us</a>
</nav>
<!-- Go-back button -->
<button onclick="history.back()">Go Back</button>
</body>
</html>