-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (87 loc) · 3.83 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Vendor CSS Files -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
<link rel="stylesheet" href="styles.css" />
<title>Hero</title>
</head>
<body>
<header>
<nav class="container sticker">
<div><img src="logo.png" class="logo" alt=""></div>
<div>
<a class="navigation" href="">Home</a>
<a class="navigation" href="">Servces</a>
<a class="navigation" href="admin.html">About Us</a>
<a class="navigation" href="">Testimonials</a>
<a class="navigation" href="">Tracker</a>
</div>
</nav>
<div class="header-container">
<div class="header-container-inner">
<h1>
Your Lightning Fast Delivery Partner
</h1>
<p>
"Unleash Lightning-Fast Deliveries with Us! From swift shipments to secure destinations, we redefine logistics excellence, ensuring your aspirations arrive on time, every time. Trust us for a world of rapid deliveries that exceed expectations."
</p>
<form id="trackForm" >
<div>
<input
type="text"
class="form-control"
placeholder="Enter your tracking number"
id="trackingNumber"
>
<input type="submit" class="btn" value="Track Now">
</div>
</form>
<div id="trackedData"></div>
</div>
<!-- <a class="btn" href="#">Start shoping</a> -->
</div>
</div>
</header>
<section>
<div class="feature-container">
<div class="feature-service">
<div class="icon">
<i class="fa-solid fa-plane-departure"></i>
</div>
<div>
<h3>AIR FREIGHT</h3>
<p>
Embark on the Fast Track: Elevate Your Shipments and Reach New Heights with Our Air Freight Solutions! Swift and efficient, our air cargo services transcend borders, ensuring your goods soar to their destinations with speed and reliability. Explore the world of seamless aerial logistics, where efficiency meets excellence.
</p>
</div>
</div>
<div class="feature-service">
<div class="icon">
<i class="fa-solid fa-truck"></i>
</div>
<div>
<h3>DELIVERY PACKAGING</h3>
<p>
Packaging that Delivers Excellence: From Fragile to Bulky, Trust Our Expertise to Securely Safeguard Your Shipments. Our tailored delivery packaging solutions go beyond conventional protection – we ensure each package is meticulously handled, safeguarding your items for their journey. Discover a partnership that encapsulates care and reliability
</p>
</div>
</div>
<div class="feature-service">
<div class="icon">
<i class="fa-solid fa-ship"></i>
</div>
<div>
<h3>SEA FREIGHT</h3>
<p>
Navigating Success across Oceans: Seamlessly Connect Continents with Our Sea Freight Expertise. Experience the expansive reach of our sea freight solutions, bridging gaps between distant shores. With a commitment to efficiency and safety, we navigate the global waters to transport your cargo with precision, unlocking a world of possibilities.
</p>
</div>
</div>
</section>
</div>
<script src="script.js"></script>
</body>
</html>