-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
157 lines (151 loc) · 5.12 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<title>SSL</title>
</head>
<body>
<header>
<img class="logo" src="images/logo.svg" alt="logo">
<nav>
<ul id="navbar" class="nav_links">
<li><a class="btn active" href="index.html">Home</a></li>
<li>
<div class="dropdown">
<button class="dropbtn"><a class="btn" href="">Services</a>
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="air-service.html">Air Service</a>
<a href="sea-service.html">Sea Service</a>
</div>
</div>
</li>
<li><a class="btn" href="contact-us.html">Contact Us</a></li>
</ul>
</nav>
</header>
<section class="intro">
<div class="title">
<h1>SSL FREIGHT<br/>
FORWARDERS<br/>
PVT LTD</h1>
<p class="contact"><i class="fa fa-phone" aria-hidden="true"></i>
+91 9811280491<br/>
<i class="fa fa-envelope" aria-hidden="true"></i>
</p>
</div>
<div class="title_pic">
<img src="./images/Group 37.svg" alt="">
</div>
</section>
<section class="main_content">
<h2>Who are We?</h2>
<div class="info">
<div>
<p>SSL FREIGHT FORWARDERS PVT LTD was established in 2018
and currently has strategic partners in major sea and airports
across the world. We are specialize in Sea and Air freight,
Consolidation, Packaging, Transport and Logistics, Warehousing
and Customs Clearance
</p>
</div>
<div>
<img class="info_img" src="./images/containers.svg" alt="">
</div>
</div>
<h2>Our Services</h2>
<div class="info info_even">
<div>
<img class="info_img" src="./images/air.svg" alt="">
</div>
<div>
<h3>Air Transportation</h3>
<p>We help our Customers in providing smooth
transportation of goods with full safety and
without any inconvenience.</p>
</div>
</div>
<div class="info info_even">
<div>
<h3>Sea Transportation</h3>
<p>We devotes to domestic and international sea
freight business. We are keeping on close
cooperation relationship with various of famous
carriers.<br/>MAERSK, APL, COSCO, EVERGREEN, MSC
OOCL etc are some examples of that.
</p>
</div>
<div>
<img class="info_img" src="./images/sea.svg" alt="">
</div>
</div>
<div class="info info_even">
<div>
<img class="info_img" src="./images/train.svg" alt="">
</div>
<div>
<h3>Train Transportation</h3>
<p>We help our Customers in providing inter and
intra state train transportation of goods with
full safety.
</p>
</div>
</div>
<div class="info info_even">
<div>
<h3>Road Transportation</h3>
<p>By Road, We are engaged in offering following
services to our customers.
<ul class="list">
<li>Container Services</li>
<li>Trailer Services</li>
<li>Trucks for Transportation</li>
</ul>
</p>
</div>
<div>
<img class="info_img" src="./images/sea.svg" alt="">
</div>
</div>
</section>
<footer>
<div class="content">
<div class="link-boxes">
<div class="top">
<p class="follow">Follow us</p>
<div class="media-icons">
<a class="social_logo" href="#"><i class="fa fa-facebook"></i></a>
<a class="social_logo" href="#"><i class="fa fa-twitter"></i></a>
<a class="social_logo" href="#"><i class="fa fa-instagram"></i></a>
<a class="social_logo" href="#"><i class="fa fa-linkedin"></i></a>
<a class="social_logo" href="#"><i class="fa fa-youtube"></i></a>
</div>
</div>
<div class="box input-box">
<h3 class="company_name">SSL FREIGHT FORWARDERS PVT LTD</h3>
<p class="company_add">(International Logistics and Supply Chain)<br/>
C2, 2nd Floor, Block-E, Swastik Apartment<br/>
Kamal Pur, Burari,<br/>
New Delhi - 110084, India.</p>
</div>
</div>
</div>
<div class="bottom-details">
<div class="bottom_text">
<span class="copyright_text">© 2008-2021. SSL FREIGHT FORWARDERS PVT LTD. All Rights Reserved.</span>
<span class="policy_terms">
<a href="#">Terms of Service</a>
<a href="#">Privacy Policy</a>
</span>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>