-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrands.html
80 lines (80 loc) · 3.23 KB
/
brands.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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Explore the top brands we offer for CCTV cameras and security systems.">
<title>Brands - CCTV Shop</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<h1>CCTV Shop</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="delivery.html">Online Delivery</a></li>
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="terms.html">Terms and Conditions</a></li>
<li><a href="refund.html">Refund and Return Policy</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="brands.html">Brands</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="brands">
<div class="container">
<h2>Our Brands</h2>
<p>We offer products from top brands including:</p>
<ul>
<li>Dahua</li>
<li>Hikvision</li>
<li>Jovision</li>
<li>Armor</li>
<li>Srihome</li>
<!-- Add more brands as needed -->
</ul>
</div>
</section>
</main>
<footer>
<div class="container">
<div class="footer-info">
<div class="footer-section">
<h3>Contact Us</h3>
<p>Phone: +8801880663885</p>
<p>Email: cctvcamerabdctg@gmail.com</p>
<p>Address: Bahadderhat, Chittagong, Bangladesh</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="about.html">About Us</a></li>
<li><a href="delivery.html">Online Delivery</a></li>
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="terms.html">Terms and Conditions</a></li>
<li><a href="refund.html">Refund and Return Policy</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="brands.html">Brands</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Follow Us</h3>
<ul class="social-media">
<li><a href="https://www.facebook.com/mdtokir.tokir.125">Facebook</a></li>
<li><a href="https://x.com/cctvcamerabdctg">Twitter</a></li>
<li><a href="https://www.instagram.com/cctv_camerabd/">Instagram</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 CCTV Shop. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>