Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Get Shipping Quote - GlobalShip</title> | |
| <meta name="description" content="Get instant shipping quotes for international and domestic deliveries with GlobalShip."> | |
| <link rel="stylesheet" href="assets/css/styles.css"> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | |
| </head> | |
| <body> | |
| <header class="header"> | |
| <nav class="nav"> | |
| <div class="nav-container"> | |
| <div class="nav-brand"> | |
| <h1 class="logo">GlobalShip</h1> | |
| <span class="logo-subtitle">Worldwide Delivery</span> | |
| </div> | |
| <ul class="nav-menu"> | |
| <li><a href="index.html" class="nav-link">Home</a></li> | |
| <li><a href="about.html" class="nav-link">About</a></li> | |
| <li><a href="services.html" class="nav-link">Services</a></li> | |
| <li><a href="track.html" class="nav-link">Track Package</a></li> | |
| <li><a href="quote.html" class="nav-link active">Get Quote</a></li> | |
| <li><a href="contact.html" class="nav-link">Contact</a></li> | |
| <li><a href="login.html" class="nav-link login-btn">Login</a></li> | |
| </ul> | |
| <div class="nav-toggle"> | |
| <span></span> | |
| <span></span> | |
| <span></span> | |
| </div> | |
| </div> | |
| </nav> | |
| </header> | |
| <main class="page-content"> | |
| <div class="container"> | |
| <section class="page-header"> | |
| <h1>Get Your Shipping Quote</h1> | |
| <p>Enter your package details to get instant pricing for domestic and international shipping.</p> | |
| </section> | |
| <section class="quote-section"> | |
| <form class="quote-form" id="quoteForm"> | |
| <div class="form-section"> | |
| <h3>Package Information</h3> | |
| <div class="form-row"> | |
| <div class="form-group"> | |
| <label for="weight">Weight (lbs)</label> | |
| <input type="number" id="weight" name="weight" step="0.1" min="0.1" required> | |
| </div> | |
| <div class="form-group"> | |
| <label for="length">Length (inches)</label> | |
| <input type="number" id="length" name="length" step="0.1" min="0.1" required> | |
| </div> | |
| </div> | |
| <div class="form-row"> | |
| <div class="form-group"> | |
| <label for="width">Width (inches)</label> | |
| <input type="number" id="width" name="width" step="0.1" min="0.1" required> | |
| </div> | |
| <div class="form-group"> | |
| <label for="height">Height (inches)</label> | |
| <input type="number" id="height" name="height" step="0.1" min="0.1" required> | |
| </div> | |
| </div> | |
| <div class="form-group"> | |
| <label for="packageType">Package Type</label> | |
| <select id="packageType" name="packageType" required> | |
| <option value="">Select package type</option> | |
| <option value="envelope">Documents/Envelope</option> | |
| <option value="small-box">Small Box (up to 20 lbs)</option> | |
| <option value="medium-box">Medium Box (20-50 lbs)</option> | |
| <option value="large-box">Large Box (50+ lbs)</option> | |
| <option value="irregular">Irregular Shape</option> | |
| </select> | |
| </div> | |
| <div class="form-group"> | |
| <label for="description">Package Contents</label> | |
| <textarea id="description" name="description" rows="3" placeholder="Brief description of contents (required for international shipping)"></textarea> | |
| </div> | |
| </div> | |
| <div class="form-section"> | |
| <h3>Origin Information</h3> | |
| <div class="form-row"> | |
| <div class="form-group"> | |
| <label for="fromCountry">From Country</label> | |
| <select id="fromCountry" name="fromCountry" required> | |
| <option value="">Select country</option> | |
| <option value="US">United States</option> | |
| <option value="CA">Canada</option> | |
| <option value="GB">United Kingdom</option> | |
| <option value="DE">Germany</option> | |
| <option value="FR">France</option> | |
| <option value="JP">Japan</option> | |
| <option value="AU">Australia</option> | |
| <option value="CN">China</option> | |
| <option value="IN">India</option> | |
| <option value="BR">Brazil</option> | |
| </select> | |
| </div> | |
| <div class="form-group"> | |
| <label for="fromZip">Postal/ZIP Code</label> | |
| <input type="text" id="fromZip" name="fromZip" required> | |
| </div> | |
| </div> | |
| <div class="form-group"> | |
| <label for="fromCity">City</label> | |
| <input type="text" id="fromCity" name="fromCity" required> | |
| </div> | |
| </div> | |
| <div class="form-section"> | |
| <h3>Destination Information</h3> | |
| <div class="form-row"> | |
| <div class="form-group"> | |
| <label for="toCountry">To Country</label> | |
| <select id="toCountry" name="toCountry" required> | |
| <option value="">Select country</option> | |
| <option value="US">United States</option> | |
| <option value="CA">Canada</option> | |
| <option value="GB">United Kingdom</option> | |
| <option value="DE">Germany</option> | |
| <option value="FR">France</option> | |
| <option value="JP">Japan</option> | |
| <option value="AU">Australia</option> | |
| <option value="CN">China</option> | |
| <option value="IN">India</option> | |
| <option value="BR">Brazil</option> | |
| </select> | |
| </div> | |
| <div class="form-group"> | |
| <label for="toZip">Postal/ZIP Code</label> | |
| <input type="text" id="toZip" name="toZip" required> | |
| </div> | |
| </div> | |
| <div class="form-group"> | |
| <label for="toCity">City</label> | |
| <input type="text" id="toCity" name="toCity" required> | |
| </div> | |
| </div> | |
| <div class="form-section"> | |
| <h3>Shipping Options</h3> | |
| <div class="form-group"> | |
| <label for="serviceType">Service Type</label> | |
| <select id="serviceType" name="serviceType" required> | |
| <option value="">Select service</option> | |
| <option value="economy">Economy (5-7 business days)</option> | |
| <option value="standard">Standard (3-5 business days)</option> | |
| <option value="express">Express (2-3 business days)</option> | |
| <option value="overnight">Overnight (1 business day)</option> | |
| </select> | |
| </div> | |
| <div class="form-group checkbox-group"> | |
| <label class="checkbox-label"> | |
| <input type="checkbox" id="insurance" name="insurance"> | |
| <span class="checkmark"></span> | |
| Add shipping insurance (+$2.50) | |
| </label> | |
| </div> | |
| <div class="form-group checkbox-group"> | |
| <label class="checkbox-label"> | |
| <input type="checkbox" id="signature" name="signature"> | |
| <span class="checkmark"></span> | |
| Signature confirmation (+$3.00) | |
| </label> | |
| </div> | |
| </div> | |
| <button type="submit" class="btn btn-primary btn-full">Get Quote</button> | |
| </form> | |
| <div class="quote-results" id="quoteResults" style="display: none;"> | |
| <h3>Your Shipping Quote</h3> | |
| <div class="quote-summary"> | |
| <div class="quote-item"> | |
| <span>Base Shipping:</span> | |
| <span id="basePrice">$0.00</span> | |
| </div> | |
| <div class="quote-item"> | |
| <span>Insurance:</span> | |
| <span id="insurancePrice">$0.00</span> | |
| </div> | |
| <div class="quote-item"> | |
| <span>Signature Confirmation:</span> | |
| <span id="signaturePrice">$0.00</span> | |
| </div> | |
| <div class="quote-total"> | |
| <span>Total:</span> | |
| <span id="totalPrice">$0.00</span> | |
| </div> | |
| </div> | |
| <div class="quote-details"> | |
| <h4>Delivery Information</h4> | |
| <p><strong>Estimated Delivery:</strong> <span id="deliveryTime">5-7 business days</span></p> | |
| <p><strong>Tracking:</strong> Included with all shipments</p> | |
| <p><strong>Customs Clearance:</strong> Included for international shipments</p> | |
| </div> | |
| <div class="quote-actions"> | |
| <button class="btn btn-primary">Book This Shipment</button> | |
| <button class="btn btn-outline">Save Quote</button> | |
| </div> | |
| </div> | |
| </section> | |
| </div> | |
| </main> | |
| <footer class="footer"> | |
| <div class="container"> | |
| <div class="footer-content"> | |
| <div class="footer-section"> | |
| <h3>GlobalShip</h3> | |
| <p>Your trusted partner for worldwide shipping solutions.</p> | |
| </div> | |
| <div class="footer-section"> | |
| <h4>Services</h4> | |
| <ul> | |
| <li><a href="services.html">International Shipping</a></li> | |
| <li><a href="services.html">Express Delivery</a></li> | |
| <li><a href="services.html">Package Tracking</a></li> | |
| <li><a href="services.html">Business Solutions</a></li> | |
| </ul> | |
| </div> | |
| <div class="footer-section"> | |
| <h4>Company</h4> | |
| <ul> | |
| <li><a href="about.html">About Us</a></li> | |
| <li><a href="contact.html">Contact</a></li> | |
| <li><a href="#">Careers</a></li> | |
| <li><a href="#">Press</a></li> | |
| </ul> | |
| </div> | |
| <div class="footer-section"> | |
| <h4>Support</h4> | |
| <ul> | |
| <li><a href="track.html">Track Package</a></li> | |
| <li><a href="quote.html">Get Quote</a></li> | |
| <li><a href="#">Help Center</a></li> | |
| <li><a href="#">Shipping Calculator</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="footer-bottom"> | |
| <p>© 2024 GlobalShip. All rights reserved.</p> | |
| <p>Built with <a href="https://huggingface.co/spaces/akhaliq/anycoder" target="_blank">anycoder</a></p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script src="assets/js/script.js"></script> | |
| <script src="assets/js/quote.js"></script> | |
| </body> | |
| </html> |