-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
81 lines (76 loc) · 3.23 KB
/
about.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
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link rel="stylesheet" href="about-styles.css"> <!-- Custom styles for about page -->
<link rel="stylesheet" href="navbar-styles.css"> <!-- Reuse the sidebar styles -->
<link rel="stylesheet" href="footer-styles.css"> <!-- Styles for footer -->
</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 href="services.html">Services</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="dashboard.html">Dashboard</a></li>
<li><a class="active" href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="orders.html">Orders</a></li>
</ul>
</aside>
<!-- Main Content Section -->
<main class="about-main">
<div class="header">
<h1>About Us</h1>
<p>We are committed to providing the best solutions for your business needs.</p>
</div>
<div class="about-content">
<h2>Our Mission</h2>
<p>At MyBrand, our mission is to innovate and provide top-notch services that empower businesses to reach their full potential.</p>
<h2>Our Story</h2>
<p>Founded in 2023, we started with a simple idea: to make technology accessible and beneficial for everyone. Over the years, we have grown into a dynamic team of experts dedicated to driving success for our clients. Ensuring ideal system for manufacturing industries for logging their productions and client requirements.</p>
</div>
</main>
<div class="team-section">
<h2>Meet Our Team</h2>
<div class="team-grid">
<div class="team-member">
<img src="team-member1.jpg" alt="Team Member 1">
<h3>Mohammad Mansib Newaz </h3>
<p>CEO & Founder</p>
</div>
<div class="team-member">
<img src="team-member2.jpg" alt="Team Member 2">
<h3>Eraj Chowdhury</h3>
<p>Chief Technology Officer</p>
</div>
</div>
</div>
</main>
<!-- Footer Section -->
<!--
<footer class="footer">
<div class="footer-content">
<div class="footer-links">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="products.html">Products</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>
</div>
<div class="footer-info">
<p>© 2024 MyBrand. All rights reserved.</p>
<p>Email: info@mybrand.com | Phone: (123) 456-7890</p>
</div>
</div>
</footer>
-->
</body>
</html>