Spaces:
Running
Running
File size: 13,772 Bytes
5555fc7 |
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 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 |
<!DOCTYPE html>
<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> |