-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
65 lines (58 loc) · 2.65 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">
<title>Our Services</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="navbar-styles.css">
<link rel="stylesheet" href="dashboard-styles.css"> <!-- New styles for improved UI -->
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script> <!-- Chart.js CDN -->
</head>
<body>
<!-- Sidebar Section -->
<aside class="sidebar">
<div class="logo">mdbms</div>
<ul class="sidebar-links">
<li><a href="index.html">Home</a></li>
<li><a class="active" href="services.html">Services</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="dashboard.html">Dashboard</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="orders.html">Orders</a></li>
</ul>
</aside>
<div class="hamburger" id="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
</header>
<!-- Main Content Section -->
<div class="container">
<h1>Our Services</h1>
<p>We offer a wide range of services tailored to meet your manufacturing needs. Below are some of our key services:</p>
<div class="services-list">
<div class="service-item">
<h2>Custom Manufacturing</h2>
<p>Our team specializes in custom manufacturing solutions to meet your specific needs and requirements, no matter the complexity.</p>
</div>
<div class="service-item">
<h2>Quality Assurance</h2>
<p>We ensure that every product meets the highest quality standards before it leaves our facility. Our quality assurance team uses state-of-the-art equipment to deliver flawless results.</p>
</div>
<div class="service-item">
<h2>Inventory Management</h2>
<p>We offer comprehensive inventory management solutions, ensuring that your products are delivered on time and in perfect condition.</p>
</div>
<div class="service-item">
<h2>Product Design Consultation</h2>
<p>Our design experts can work with you from the early stages to ensure that your product is both functional and cost-efficient.</p>
</div>
</div>
</div>
<script src="navbar.js"></script> <!-- For the hamburger menu -->
</body>
</html>