Dashboard Temp Share Shortlinks Frames API

HTMLify

products.html
Views: 17 | Author: karbonsites
  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
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Products - Nasir Hardwares</title>
    <link rel="stylesheet" href="./style.css">
    <link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
</head>
<body>
    <header class="main-header">
        <nav class="navbar">
            <div class="logo">NASIR <span class="highlight">HARDWARES</span></div>
            <ul class="nav-links">
                <li><a href="index.html">Home</a></li>
                <li><a href="products.html" class="active">Products</a></li>
                <li><a href="services.html">Services</a></li>
                <li><a href="about.html">About Us</a></li>
                <li><a href="contact.html" class="cta-nav">Get Quote</a></li>
            </ul>
            <div class="menu-toggle" id="menu-toggle">&#9776;</div>
        </nav>
    </header>

    <main>
        <section class="page-header" id="products-hero">
            <div class="container">
                <h1 class="fade-in-up">Industrial Components Catalog</h1>
                <p class="fade-in-up delay-1">Explore our comprehensive range of precision-machined parts and heavy-duty hardware.</p>
            </div>
        </section>

        <section class="container section-padding">
            <div class="product-filter">
                <input type="text" id="search-input" placeholder="Search products, part numbers..." class="fade-in-scroll">
                <select id="category-filter" class="fade-in-scroll" data-delay="1">
                    <option value="all">All Categories</option>
                    <option value="fasteners">Fasteners & Bolts</option>
                    <option value="bearings">Bearings & Seals</option>
                    <option value="machining">Precision Machining</option>
                    <option value="tools">Heavy Duty Tools</option>
                </select>
            </div>

            <div class="product-grid" id="product-list">
                <!-- Product Cards will be injected here by JS -->
                <div class="product-card fade-in-scroll" data-category="fasteners">
                    <div class="card-header">H-7890</div>
                    <div class="card-body">
                        <h4>Titanium Hex Bolts</h4>
                        <p>High-tensile strength bolts for extreme environments.</p>
                        <span class="price">$12.50 / unit</span>
                    </div>
                    <a href="contact.html" class="card-footer-btn">Inquire</a>
                </div>
                <div class="product-card fade-in-scroll" data-delay="1" data-category="bearings">
                    <div class="card-header">B-2201X</div>
                    <div class="card-body">
                        <h4>Ceramic Ball Bearings</h4>
                        <p>Low friction, high temperature rated bearings.</p>
                        <span class="price">$85.00 / unit</span>
                    </div>
                    <a href="contact.html" class="card-footer-btn">Inquire</a>
                </div>
                <div class="product-card fade-in-scroll" data-delay="2" data-category="machining">
                    <div class="card-header">M-505A</div>
                    <div class="card-body">
                        <h4>Custom CNC Components</h4>
                        <p>Precision parts manufactured to exact client specifications.</p>
                        <span class="price">Quote Required</span>
                    </div>
                    <a href="contact.html" class="card-footer-btn">Inquire</a>
                </div>
                <div class="product-card fade-in-scroll" data-delay="3" data-category="fasteners">
                    <div class="card-header">S-101B</div>
                    <div class="card-body">
                        <h4>Stainless Steel Washers (Assorted)</h4>
                        <p>Corrosion-resistant flat washers, various sizes.</p>
                        <span class="price">$4.99 / pack</span>
                    </div>
                    <a href="contact.html" class="card-footer-btn">Inquire</a>
                </div>
            </div>
            <p id="no-results" style="display: none; text-align: center; margin-top: 40px;">No products match your criteria. Please try a different search or category.</p>
        </section>
    </main>

    <footer class="main-footer">
        <div class="container footer-grid">
            <div class="footer-col">
                <h4>NASIR HARDWARES</h4>
                <p>Engineering the future of industry with quality and precision.</p>
            </div>
            <div class="footer-col">
                <h4>Quick Links</h4>
                <ul>
                    <li><a href="index.html">Home</a></li>
                    <li><a href="products.html" class="active">Products</a></li>
                    <li><a href="services.html">Services</a></li>
                    <li><a href="about.html">Careers</a></li>
                </ul>
            </div>
            <div class="footer-col">
                <h4>Support</h4>
                <ul>
                    <li><a href="#">FAQ</a></li>
                    <li><a href="contact.html">Support Center</a></li>
                    <li><a href="#">Privacy Policy</a></li>
                </ul>
            </div>
            <div class="footer-col">
                <h4>Connect</h4>
                <p>Email: info@nasirhardware.com</p>
                <p>Phone: +1 (555) 123-4567</p>
            </div>
        </div>
        <div class="footer-bottom">
            &copy; 2024 Nasir Hardwares. All Rights Reserved.
        </div>
    </footer>

    <script src="./script.js"></script>
</body>
</html>