Skip to content

Instantly share code, notes, and snippets.

@daveyholler
Last active August 27, 2025 01:56
Show Gist options
  • Select an option

  • Save daveyholler/a484ffe9af47ffffed75162210ceb511 to your computer and use it in GitHub Desktop.

Select an option

Save daveyholler/a484ffe9af47ffffed75162210ceb511 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hunt & Company - Automotive Accessories & Lifestyle Products</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f8f9fa;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: white;
box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
h1 {
color: #2c3e50;
border-bottom: 3px solid #3498db;
padding-bottom: 10px;
margin-bottom: 30px;
font-size: 2.5em;
}
h2 {
color: #34495e;
margin: 30px 0 20px 0;
font-size: 2em;
border-left: 4px solid #3498db;
padding-left: 15px;
}
h3 {
color: #2c3e50;
margin: 25px 0 15px 0;
font-size: 1.5em;
}
h4 {
color: #34495e;
margin: 20px 0 10px 0;
font-size: 1.3em;
}
p, li {
margin-bottom: 10px;
}
ul {
margin-left: 20px;
margin-bottom: 15px;
}
li {
margin-bottom: 8px;
}
strong {
color: #2c3e50;
}
.company-header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 40px;
border-radius: 10px;
margin-bottom: 30px;
text-align: center;
}
.company-header h1 {
color: white;
border: none;
margin-bottom: 20px;
}
.company-info {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-bottom: 20px;
}
.info-item {
background: rgba(255,255,255,0.1);
padding: 15px;
border-radius: 8px;
}
.info-item strong {
color: #ecf0f1;
}
.section {
margin-bottom: 40px;
padding: 20px;
border-radius: 8px;
background-color: #fff;
}
.section:nth-child(even) {
background-color: #f8f9fa;
}
.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-top: 20px;
}
.product-category {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.price-range {
color: #27ae60;
font-weight: bold;
font-size: 1.1em;
}
.contact-info {
background: #3498db;
color: white;
padding: 20px;
border-radius: 8px;
margin: 20px 0;
}
.contact-info a {
color: #ecf0f1;
}
.highlight-box {
background: #e8f4fd;
border-left: 4px solid #3498db;
padding: 15px;
margin: 15px 0;
border-radius: 0 8px 8px 0;
}
.shipping-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 20px;
}
.shipping-option {
background: #f8f9fa;
padding: 15px;
border-radius: 8px;
border: 1px solid #dee2e6;
}
ol {
margin-left: 20px;
margin-bottom: 15px;
}
.steps li {
margin-bottom: 10px;
padding: 5px 0;
}
@media (max-width: 768px) {
.container {
padding: 10px;
margin: 10px;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.5em;
}
.company-header {
padding: 20px;
}
}
</style>
</head>
<body>
<div class="container">
<header class="company-header">
<h1>Hunt & Company</h1>
<div class="company-info">
<div class="info-item">
<strong>Founded:</strong> 2016
</div>
<div class="info-item">
<strong>Founder:</strong> TJ Hunt
</div>
<div class="info-item">
<strong>Mission:</strong> Keep Moving Forward
</div>
<div class="info-item">
<strong>Industry:</strong> Automotive Accessories & Lifestyle Products
</div>
<div class="info-item">
<strong>Location:</strong> Woodbridge, Virginia
</div>
</div>
</header>
<section class="section">
<h2>Product Categories</h2>
<div class="product-grid">
<div class="product-category">
<h3>Automotive Accessories</h3>
<h4>License Plate Frames</h4>
<ul>
<li>Premium aluminum frames</li>
<li>Custom engraved options</li>
<li>Various finishes: Black, Chrome, Carbon Fiber</li>
<li class="price-range">Price range: $24.99 - $49.99</li>
</ul>
<h4>Car Decals & Stickers</h4>
<ul>
<li>Vinyl decals with Hunt & Co branding</li>
<li>JDM-style stickers</li>
<li>Custom car club stickers</li>
<li class="price-range">Price range: $4.99 - $19.99</li>
</ul>
<h4>Car Care Products</h4>
<ul>
<li>Microfiber towels</li>
<li>Car fresheners</li>
<li>Detailing spray</li>
<li class="price-range">Price range: $12.99 - $34.99</li>
</ul>
</div>
<div class="product-category">
<h3>Apparel</h3>
<h4>Hats & Caps</h4>
<ul>
<li>Snapback caps</li>
<li>Dad hats</li>
<li>Trucker hats</li>
<li class="price-range">Price range: $24.99 - $39.99</li>
</ul>
<h4>T-Shirts</h4>
<ul>
<li>Cotton blend tees</li>
<li>Long sleeve options</li>
<li>Limited edition designs</li>
<li class="price-range">Price range: $29.99 - $44.99</li>
</ul>
<h4>Hoodies & Sweatshirts</h4>
<ul>
<li>Pullover hoodies</li>
<li>Zip-up hoodies</li>
<li>Crewneck sweatshirts</li>
<li class="price-range">Price range: $54.99 - $79.99</li>
</ul>
</div>
<div class="product-category">
<h3>Lifestyle Products</h3>
<h4>Jet Tags (Luggage Tags)</h4>
<ul>
<li>Custom engraved aluminum tags</li>
<li>Various colors available</li>
<li class="price-range">Price: $19.99</li>
</ul>
<h4>Phone Accessories</h4>
<ul>
<li>Custom phone cases</li>
<li>PopSockets with Hunt & Co branding</li>
<li class="price-range">Price range: $14.99 - $29.99</li>
</ul>
</div>
</div>
</section>
<section class="section">
<h2>Shipping & Returns</h2>
<h3>Shipping Information</h3>
<div class="shipping-grid">
<div class="shipping-option">
<h4>Domestic Shipping (US):</h4>
<ul>
<li>Standard: 5-7 business days ($6.99)</li>
<li>Express: 2-3 business days ($12.99)</li>
<li>Overnight: Next business day ($24.99)</li>
<li><strong>Free shipping on orders over $75</strong></li>
</ul>
</div>
<div class="shipping-option">
<h4>International Shipping:</h4>
<ul>
<li>Available to Canada, UK, Australia, Japan</li>
<li>10-14 business days</li>
<li>Rates calculated at checkout</li>
<li>Customer responsible for customs/duties</li>
</ul>
</div>
<div class="shipping-option">
<h4>General Info:</h4>
<ul>
<li><strong>Processing Time:</strong> 1-2 business days</li>
<li><strong>Carrier:</strong> USPS Primary, UPS for expedited</li>
</ul>
</div>
</div>
<h3>Return Policy</h3>
<div class="highlight-box">
<ul>
<li><strong>Return Window:</strong> 30 days from delivery</li>
<li><strong>Condition:</strong> Items must be unworn/unused with tags</li>
<li><strong>Return Shipping:</strong> Customer pays return shipping unless item is defective</li>
<li><strong>Refund Processing:</strong> 5-7 business days after return received</li>
<li><strong>Exchanges:</strong> Available for size/color swaps within same product line</li>
</ul>
</div>
<h3>Damaged/Defective Items</h3>
<ul>
<li>Report within 7 days of delivery</li>
<li>Photo evidence required</li>
<li>Full refund or replacement provided</li>
<li>Return shipping paid by company</li>
</ul>
</section>
<section class="section">
<h2>Order Management</h2>
<h3>Order Status</h3>
<ul>
<li><strong>Order Confirmation:</strong> Sent within 1 hour of purchase</li>
<li><strong>Tracking Information:</strong> Provided when order ships</li>
<li><strong>Order Changes:</strong> Contact support within 2 hours of ordering</li>
<li><strong>Cancellations:</strong> Possible if order hasn't entered fulfillment</li>
</ul>
<h3>Payment Methods</h3>
<ul>
<li>Credit/Debit Cards (Visa, MasterCard, Amex)</li>
<li>PayPal</li>
<li>Sezzle (Buy Now, Pay Later)</li>
<li>Apple Pay</li>
<li>Google Pay</li>
</ul>
<h3>Order Issues</h3>
<ul>
<li><strong>Missing Items:</strong> Contact support with order number</li>
<li><strong>Wrong Items:</strong> Return incorrect item, replacement sent</li>
<li><strong>Address Changes:</strong> Must contact support immediately</li>
<li><strong>Lost Packages:</strong> Investigation required with carrier</li>
</ul>
</section>
<section class="section">
<h2>Customer Service</h2>
<div class="contact-info">
<h3>Contact Information</h3>
<ul>
<li><strong>Email:</strong> <a href="mailto:[email protected]">[email protected]</a></li>
<li><strong>Response Time:</strong> 24-48 hours</li>
<li><strong>Business Hours:</strong> Monday-Friday, 9 AM - 5 PM EST</li>
<li><strong>Phone:</strong> Currently email support only</li>
</ul>
</div>
<h3>FAQ Topics</h3>
<ul>
<li><strong>Sizing Questions:</strong> Refer to product-specific size charts</li>
<li><strong>Product Care:</strong> Washing instructions on product pages</li>
<li><strong>Bulk Orders:</strong> Contact support for wholesale inquiries</li>
<li><strong>Collaborations:</strong> Inquiries to <a href="mailto:[email protected]">[email protected]</a></li>
</ul>
</section>
<section class="section">
<h2>Promotions & Loyalty</h2>
<h3>Discount Codes</h3>
<ul>
<li><strong>Newsletter Signup:</strong> 10% off first order</li>
<li><strong>Seasonal Sales:</strong> Black Friday, Summer Sale, etc.</li>
<li><strong>Student Discount:</strong> 15% off with valid .edu email</li>
<li><strong>Military Discount:</strong> 10% off with military ID verification</li>
</ul>
<h3>Loyalty Program</h3>
<ul>
<li><strong>Points System:</strong> $1 spent = 1 point</li>
<li><strong>Rewards:</strong> 100 points = $5 off</li>
<li><strong>VIP Status:</strong> Early access to new releases</li>
<li><strong>Birthday Discount:</strong> Special offer during birthday month</li>
</ul>
</section>
<section class="section">
<h2>Product Specifications</h2>
<h3>Material Information</h3>
<ul>
<li><strong>Apparel:</strong> 100% cotton or cotton blends</li>
<li><strong>License Plates:</strong> Aircraft-grade aluminum</li>
<li><strong>Decals:</strong> 3M vinyl material, weather-resistant</li>
<li><strong>Hats:</strong> Cotton/polyester blend with adjustable sizing</li>
</ul>
<h3>Care Instructions</h3>
<ul>
<li><strong>Apparel:</strong> Machine wash cold, tumble dry low</li>
<li><strong>Accessories:</strong> Clean with mild soap and water</li>
<li><strong>Decals:</strong> Apply to clean, dry surface for best adhesion</li>
</ul>
</section>
<section class="section">
<h2>Troubleshooting Common Issues</h2>
<h3>Size Exchange Process</h3>
<ol class="steps">
<li>Contact support with order number</li>
<li>Specify desired size/color</li>
<li>Receive return label and instructions</li>
<li>Send original item back</li>
<li>New item ships once return is processed</li>
</ol>
<h3>Tracking Issues</h3>
<ul>
<li><strong>No Tracking Updates:</strong> Wait 24-48 hours after ship notification</li>
<li><strong>Stuck in Transit:</strong> Contact support after 7 days with no movement</li>
<li><strong>Delivered But Not Received:</strong> Check with neighbors, apartment office</li>
</ul>
<h3>Product Quality Concerns</h3>
<ul>
<li><strong>Fading/Shrinking:</strong> Follow care instructions, contact support if issues persist</li>
<li><strong>Defective Items:</strong> Photo evidence required for replacement</li>
<li><strong>Fit Issues:</strong> Size charts available, exchanges accepted</li>
</ul>
</section>
<section class="section">
<h2>Special Programs</h2>
<h3>Influencer/Creator Program</h3>
<ul>
<li>Application required</li>
<li>Commission-based affiliate program</li>
<li>Free products for qualified creators</li>
<li>Custom discount codes provided</li>
</ul>
<h3>Wholesale Opportunities</h3>
<ul>
<li>Minimum order quantities apply</li>
<li>Bulk pricing available</li>
<li>Contact <a href="mailto:[email protected]">[email protected]</a></li>
</ul>
<h3>Custom Orders</h3>
<ul>
<li>Minimum quantities required</li>
<li>2-3 week production time</li>
<li>Design approval process required</li>
<li>Quote provided based on specifications</li>
</ul>
</section>
<section class="section">
<h2>Seasonal Information</h2>
<h3>Holiday Shipping Deadlines</h3>
<ul>
<li><strong>Christmas:</strong> Order by December 15th for standard delivery</li>
<li><strong>Valentine's Day:</strong> Order by February 7th</li>
<li><strong>Mother's/Father's Day:</strong> Order by respective first Sunday of month</li>
</ul>
<h3>Product Launches</h3>
<ul>
<li><strong>New Releases:</strong> Typically monthly</li>
<li><strong>Limited Editions:</strong> Announced via newsletter and social media</li>
<li><strong>Restocks:</strong> Notification signup available for sold-out items</li>
</ul>
</section>
<section class="section">
<h2>Technical Specifications</h2>
<h3>Website Features</h3>
<ul>
<li><strong>Mobile Responsive:</strong> Optimized for all devices</li>
<li><strong>Search Function:</strong> Product search with filters</li>
<li><strong>Wishlist:</strong> Save items for later purchase</li>
<li><strong>Review System:</strong> Customer reviews and ratings</li>
</ul>
<h3>Security</h3>
<ul>
<li><strong>Payment Security:</strong> SSL encrypted checkout</li>
<li><strong>Data Protection:</strong> Privacy policy compliant with CCPA/GDPR</li>
<li><strong>Account Security:</strong> Password requirements and optional 2FA</li>
</ul>
</section>
</div>
</body>
</html>

Company Overview

Founded: 2016

Founder: TJ Hunt

Mission: Keep Moving Forward

Industry: Automotive Accessories & Lifestyle Products

Location: Woodbridge, Virginia

Product Categories

Automotive Accessories

  • License Plate Frames
    • Premium aluminum frames
    • Custom engraved options
    • Various finishes: Black, Chrome, Carbon Fiber
    • Price range: $24.99 - $49.99
  • Car Decals & Stickers
    • Vinyl decals with Hunt & Co branding
    • JDM-style stickers
    • Custom car club stickers
    • Price range: $4.99 - $19.99
  • Car Care Products
    • Microfiber towels
    • Car fresheners
    • Detailing spray
    • Price range: $12.99 - $34.99

Apparel

  • Hats & Caps
    • Snapback caps
    • Dad hats
    • Trucker hats
    • Price range: $24.99 - $39.99
  • T-Shirts
    • Cotton blend tees
    • Long sleeve options
    • Limited edition designs
    • Price range: $29.99 - $44.99
  • Hoodies & Sweatshirts
    • Pullover hoodies
    • Zip-up hoodies
    • Crewneck sweatshirts
    • Price range: $54.99 - $79.99

Lifestyle Products

  • Jet Tags (Luggage Tags)
    • Custom engraved aluminum tags
    • Various colors available
    • Price: $19.99
  • Phone Accessories
    • Custom phone cases
    • PopSockets with Hunt & Co branding
    • Price range: $14.99 - $29.99

Shipping & Returns

Shipping Information

  • Domestic Shipping (US):
    • Standard: 5-7 business days ($6.99)
    • Express: 2-3 business days ($12.99)
    • Overnight: Next business day ($24.99)
    • Free shipping on orders over $75
  • International Shipping:
    • Available to Canada, UK, Australia, Japan
    • 10-14 business days
    • Rates calculated at checkout
    • Customer responsible for customs/duties
  • Processing Time: 1-2 business days
  • Carrier: USPS Primary, UPS for expedited

Return Policy

  • Return Window: 30 days from delivery
  • Condition: Items must be unworn/unused with tags
  • Return Shipping: Customer pays return shipping unless item is defective
  • Refund Processing: 5-7 business days after return received
  • Exchanges: Available for size/color swaps within same product line

Damaged/Defective Items

  • Report within 7 days of delivery
  • Photo evidence required
  • Full refund or replacement provided
  • Return shipping paid by company

Order Management

Order Status

  • Order Confirmation: Sent within 1 hour of purchase
  • Tracking Information: Provided when order ships
  • Order Changes: Contact support within 2 hours of ordering
  • Cancellations: Possible if order hasn't entered fulfillment

Payment Methods

  • Credit/Debit Cards (Visa, MasterCard, Amex)
  • PayPal
  • Sezzle (Buy Now, Pay Later)
  • Apple Pay
  • Google Pay

Order Issues

  • Missing Items: Contact support with order number
  • Wrong Items: Return incorrect item, replacement sent
  • Address Changes: Must contact support immediately
  • Lost Packages: Investigation required with carrier

Account & Website Issues

Account Management

  • Creating Account: Optional but recommended for faster checkout
  • Password Reset: Available via email
  • Order History: Accessible through account dashboard
  • Newsletter: Exclusive discounts and early access to drops

Website Technical Issues

  • Checkout Problems: Clear browser cache, try incognito mode
  • Payment Declined: Contact your bank, try different payment method
  • Size Chart: Available on each product page
  • Stock Notifications: Sign up for restock alerts on sold-out items

Customer Service

Contact Information

  • Email: [email protected]
  • Response Time: 24-48 hours
  • Business Hours: Monday-Friday, 9 AM - 5 PM EST
  • Phone: Currently email support only

FAQ Topics

  • Sizing Questions: Refer to product-specific size charts
  • Product Care: Washing instructions on product pages
  • Bulk Orders: Contact support for wholesale inquiries
  • Collaborations: Inquiries to [email protected]

Promotions & Loyalty

Discount Codes

  • Newsletter Signup: 10% off first order
  • Seasonal Sales: Black Friday, Summer Sale, etc.
  • Student Discount: 15% off with valid .edu email
  • Military Discount: 10% off with military ID verification

Loyalty Program

  • Points System: $1 spent = 1 point
  • Rewards: 100 points = $5 off
  • VIP Status: Early access to new releases
  • Birthday Discount: Special offer during birthday month

Product Specifications

Material Information

  • Apparel: 100% cotton or cotton blends
  • License Plates: Aircraft-grade aluminum
  • Decals: 3M vinyl material, weather-resistant
  • Hats: Cotton/polyester blend with adjustable sizing

Care Instructions

  • Apparel: Machine wash cold, tumble dry low
  • Accessories: Clean with mild soap and water
  • Decals: Apply to clean, dry surface for best adhesion

Troubleshooting Common Issues

Size Exchange Process

  1. Contact support with order number
  2. Specify desired size/color
  3. Receive return label and instructions
  4. Send original item back
  5. New item ships once return is processed

Tracking Issues

  • No Tracking Updates: Wait 24-48 hours after ship notification
  • Stuck in Transit: Contact support after 7 days with no movement
  • Delivered But Not Received: Check with neighbors, apartment office

Product Quality Concerns

  • Fading/Shrinking: Follow care instructions, contact support if issues persist
  • Defective Items: Photo evidence required for replacement
  • Fit Issues: Size charts available, exchanges accepted

Special Programs

Influencer/Creator Program

  • Application required
  • Commission-based affiliate program
  • Free products for qualified creators
  • Custom discount codes provided

Wholesale Opportunities

Custom Orders

  • Minimum quantities required
  • 2-3 week production time
  • Design approval process required
  • Quote provided based on specifications

Seasonal Information

Holiday Shipping Deadlines

  • Christmas: Order by December 15th for standard delivery
  • Valentine's Day: Order by February 7th
  • Mother's/Father's Day: Order by respective first Sunday of month

Product Launches

  • New Releases: Typically monthly
  • Limited Editions: Announced via newsletter and social media
  • Restocks: Notification signup available for sold-out items

Technical Specifications

Website Features

  • Mobile Responsive: Optimized for all devices
  • Search Function: Product search with filters
  • Wishlist: Save items for later purchase
  • Review System: Customer reviews and ratings

Security

  • Payment Security: SSL encrypted checkout
  • Data Protection: Privacy policy compliant with CCPA/GDPR
  • Account Security: Password requirements and optional 2FA
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment