forked from neyamulhasan/DropEx-Logistics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
121 lines (106 loc) · 3.89 KB
/
Copy pathservices.html
File metadata and controls
121 lines (106 loc) · 3.89 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>How to Do Business with DropEx</title>
<style>
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
}
header {
background: linear-gradient(to right, #0056b3, #007bff);
color: #fff;
padding: 20px 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h2 {
color: #0056b3;
}
ul {
list-style-type: disc;
padding-left: 20px;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
text-align: center;
padding: 20px;
background: #0056b3;
color: #fff;
margin-top: 20px;
}
footer p {
margin: 0;
font-size: 0.9em;
}
</style>
</head>
<body>
<header>
<h1>How to Do Business with DropEx</h1>
</header>
<div class="container">
<p>Welcome to <strong>DropEx</strong>, where we redefine global shipping and logistics. Partnering with us is simple and ensures a seamless delivery experience. Follow the steps below to start working with us:</p>
<h2>Step 1: Register Your Business</h2>
<ul>
<li>Visit our website at <a href="http://www.dropex.com">www.dropex.com</a> and click on <strong>Register</strong>.</li>
<li>Fill out the business account registration form with your company details.</li>
<li>Submit the necessary documents (business license, tax ID, etc.).</li>
<li>Receive a confirmation email with your unique business ID.</li>
</ul>
<h2>Step 2: Select Your Service Plan</h2>
<ul>
<li><strong>Express Delivery</strong>: Fast and reliable for urgent shipments.</li>
<li><strong>Standard Delivery</strong>: Cost-effective and timely shipping.</li>
<li><strong>Custom Freight</strong>: Tailored solutions for bulk cargo.</li>
<li>Contact your dedicated account manager for guidance.</li>
</ul>
<h2>Step 3: Set Up Logistics</h2>
<ul>
<li>Access our user-friendly platform to manage your shipments.</li>
<li>Schedule pickups, track deliveries, and monitor logistics in real-time.</li>
<li>Integrate our API for automated shipment management.</li>
</ul>
<h2>Step 4: Start Shipping</h2>
<ul>
<li>Prepare your packages using our shipping guidelines.</li>
<li>Print shipping labels from your dashboard.</li>
<li>Drop off shipments at the nearest DropEx branch or request a pickup.</li>
</ul>
<h2>Step 5: Grow with Us</h2>
<ul>
<li>Benefit from discounted rates as your shipping volume increases.</li>
<li>Access analytics and insights to optimize your supply chain.</li>
<li>Partner with DropEx for marketing and branding opportunities.</li>
</ul>
<h2>Need Assistance?</h2>
<p>Our support team is available 24/7 to assist you at <strong>support@dropex.com</strong> or via phone at <strong>+1 (212) 555-1234</strong>.</p>
</div>
<footer>
<p>© 2025 DropEx. All Rights Reserved. | Delivering Beyond Borders</p>
</footer>
</body>
</html>