Dashboard Temp Share Shortlinks Frames API

HTMLify

browse.html
Views: 27 | 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Browse Parts - AutoParts Hub</title>
    <link rel="stylesheet" href="style.css">
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
</head>
<body>
    <header class="header">
        <div class="container nav-container">
            <h1 class="logo"><a href="index.html">AutoParts Hub</a></h1>
            <nav class="main-nav">
                <a href="index.html" class="nav-link">Home</a>
                <a href="browse.html" class="nav-link active">Browse Parts</a>
                <a href="vendors.html" class="nav-link">Vendors</a>
                <a href="admin.html" class="nav-link">Admin</a>
                <a href="vendor_dashboard.html" class="nav-link">Vendor Portal</a>
                <a href="#contact" class="nav-link">Contact</a>
            </nav>
            <div class="user-actions">
                <button class="btn-icon search-toggle"><i class="icon-search">🔍</i></button>
                <button class="btn-primary">Sign In</button>
            </div>
        </div>
    </header>

    <main class="container">
        <section class="page-header fade-in-down">
            <h2>Find Your Perfect Part</h2>
            <p>Search over 5 million listings from trusted vendors worldwide.</p>
        </section>

        <div class="marketplace-layout">
            <!-- Sidebar Filter -->
            <aside class="sidebar fade-in-left">
                <h4>Filters</h4>
                <div class="filter-group">
                    <h5>Vehicle Make</h5>
                    <select class="filter-select">
                        <option>All Makes</option>
                        <option>Toyota</option>
                        <option>Ford</option>
                        <option>BMW</option>
                    </select>
                </div>
                <div class="filter-group">
                    <h5>Category</h5>
                    <ul>
                        <li><a href="#">Engine (234)</a></li>
                        <li><a href="#">Brakes (190)</a></li>
                        <li><a href="#">Filters (450)</a></li>
                        <li><a href="#">Lighting (120)</a></li>
                    </ul>
                </div>
                <div class="filter-group">
                    <h5>Condition</h5>
                    <label><input type="checkbox" checked> New</label><br>
                    <label><input type="checkbox"> Used (OEM)</label><br>
                    <label><input type="checkbox"> Remanufactured</label>
                </div>
                <button class="btn-apply-filter">Apply Filters</button>
            </aside>

            <!-- Product Grid -->
            <section class="product-list">
                <div class="sort-bar">
                    <span>Showing 1-12 of 1,245 results</span>
                    <select class="sort-by">
                        <option>Relevance</option>
                        <option>Price: Low to High</option>
                        <option>Top Rated</option>
                    </select>
                </div>
                
                <div class="part-grid">
                    <!-- Part Card 1 (Example) -->
                    <div class="part-card hover-lift fade-in-up">
                        <img src="/placeholder-part-1.jpg" alt="Brake Rotor">
                        <div class="part-info">
                            <h5>High-Performance Carbon Brake Rotor Set</h5>
                            <p class="vendor-name">Sold by: Precision Auto Parts Inc.</p>
                            <p class="price">$249.99</p>
                            <div class="rating">★★★★☆</div>
                            <button class="btn-add-to-cart">Add to Cart</button>
                        </div>
                    </div>
                    <!-- Part Card 2 (Example) -->
                    <div class="part-card hover-lift fade-in-up delay-1">
                        <img src="/placeholder-part-2.jpg" alt="Oil Filter">
                        <div class="part-info">
                            <h5>Premium Synthetic Oil Filter (Model X)</h5>
                            <p class="vendor-name">Sold by: Global OEM Supply</p>
                            <p class="price">$12.50</p>
                            <div class="rating">★★★★★</div>
                            <button class="btn-add-to-cart">Add to Cart</button>
                        </div>
                    </div>
                    <!-- Part Card 3 (Example) -->
                    <div class="part-card hover-lift fade-in-up delay-2">
                        <img src="/placeholder-part-3.jpg" alt="Headlight Assembly">
                        <div class="part-info">
                            <h5>LED Headlight Assembly - Driver Side</h5>
                            <p class="vendor-name">Sold by: BrightLights Corp.</p>
                            <p class="price">$310.00</p>
                            <div class="rating">★★★★☆</div>
                            <button class="btn-add-to-cart">Add to Cart</button>
                        </div>
                    </div>
                    <!-- Part Card 4 (Example) -->
                    <div class="part-card hover-lift fade-in-up delay-3">
                        <img src="/placeholder-part-4.jpg" alt="Fuel Pump">
                        <div class="part-info">
                            <h5>OEM Replacement Fuel Pump Module</h5>
                            <p class="vendor-name">Sold by: Classic Spares Co.</p>
                            <p class="price">$188.75</p>
                            <div class="rating">★★★★★</div>
                            <button class="btn-add-to-cart">Buy Now</button>
                        </div>
                    </div>
                    
                    <!-- Add more cards dynamically or statically for demonstration -->
                    <div class="part-card hover-lift fade-in-up delay-4">
                        <img src="/placeholder-part-5.jpg" alt="Spark Plugs">
                        <div class="part-info">
                            <h5>Iridium Spark Plug Set (4 Pcs)</h5>
                            <p class="vendor-name">Sold by: Performance Ignition</p>
                            <p class="price">$45.99</p>
                            <div class="rating">★★★★☆</div>
                            <button class="btn-add-to-cart">Add to Cart</button>
                        </div>
                    </div>
                    <div class="part-card hover-lift fade-in-up delay-5">
                        <img src="/placeholder-part-6.jpg" alt="Axle Assembly">
                        <div class="part-info">
                            <h5>Complete CV Axle Assembly - Front Left</h5>
                            <p class="vendor-name">Sold by: Drivetrain Masters</p>
                            <p class="price">$115.00</p>
                            <div class="rating">★★★★★</div>
                            <button class="btn-add-to-cart">Add to Cart</button>
                        </div>
                    </div>
                </div>

                <div class="pagination text-center fade-in-up">
                    <button class="btn-page-nav disabled">&laquo; Prev</button>
                    <button class="btn-page-nav active">1</button>
                    <button class="btn-page-nav">2</button>
                    <button class="btn-page-nav">3</button>
                    <button class="btn-page-nav">Next &raquo;</button>
                </div>
            </section>
        </div>
    </main>

    <footer class="footer">
        <div class="container">
            <div class="footer-grid">
                <div>
                    <h4>AutoParts Hub</h4>
                    <p>The trusted source for automotive components.</p>
                </div>
                <div>
                    <h4>Quick Links</h4>
                    <ul>
                        <li><a href="index.html">Home</a></li>
                        <li><a href="browse.html">Shop</a></li>
                        <li><a href="vendors.html">Vendors</a></li>
                        <li><a href="admin.html">Admin Dashboard</a></li>
                        <li><a href="vendor_dashboard.html">Vendor Dashboard</a></li>
                    </ul>
                </div>
                <div>
                    <h4>Support</h4>
                    <ul>
                        <li><a href="#faq">FAQ</a></li>
                        <li><a href="#terms">Terms of Service</a></li>
                        <li><a href="#privacy">Privacy Policy</a></li>
                    </ul>
                </div>
            </div>
            <div class="copyright">
                &copy; 2024 AutoParts Hub. All rights reserved.
            </div>
        </div>
    </footer>

    <script src="script.js" defer></script>

  <a href="https://karbonsites.space/home" target="_blank" id="karbon-promo-banner">
      <span></span>
      <div>Built with <b>Karbon Sites</b></div>
  </a>
</body>
</html>