-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatalog.html
More file actions
82 lines (77 loc) · 3.1 KB
/
catalog.html
File metadata and controls
82 lines (77 loc) · 3.1 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
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Custom PCB Solutions</title>
<link rel="stylesheet" href="styles-catalog.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<header>
<div class="logo-container">
<img src="https://beebotix.com/logo.svg" alt="BeeBotix Logo" class="company-logo">
</div>
<p class="tagline">Buzz In Robotics - Catalog</p>
</header>
<div class="notice-banner">
<div class="notice-item">
<i class="fas fa-microchip"></i>
<p>Custom Production and Quality Testing</p>
</div>
<div class="notice-item">
<i class="fas fa-money-bill-wave"></i>
<p>50% Advance Payment Required</p>
</div>
<div class="notice-item">
<i class="fas fa-exchange-alt"></i>
<p>100% Replacement Guarantee</p>
</div>
</div>
<main>
<div class="catalog-container" id="catalogContainer">
<!-- Products will be dynamically inserted here -->
</div>
</main>
<a href="#" class="quote-button" id="quoteButton">
<i class="fas fa-file-invoice"></i>
Request Quotation
</a>
<!-- Footer -->
<footer class="footer">
<div class="footer-content">
<div class="footer-section">
<h3>BeeBotix</h3>
<p>Innovative robotics and software solutions for the future.</p>
<div class="social-links">
<a href="https://github.com/BeeBotix"><i class="fab fa-github"></i></a>
<a href="https://in.linkedin.com/in/sukarna-jana"><i class="fab fa-linkedin"></i></a>
<a href="https://www.instagram.com/beebotix/"><i class="fab fa-instagram"></i></a>
<a href="https://x.com/janasukarna"><i class="fab fa-twitter"></i></a>
</div>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="#services">Services</a></li>
<li><a href="./products.html">Products</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Contact Info</h3>
<ul>
<li><i class="fas fa-envelope"></i> contact@beebotix.com</li>
<li><i class="fas fa-phone"></i> +91 9113688393</li>
<li><i class="fas fa-map-marker-alt"></i> PLA @ Presidency University, Bengaluru - 560064</li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 BeeBotix. All rights reserved.</p>
</div>
</footer>
<script src="script-catalog.js"></script>
</body>
</html>