-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
119 lines (99 loc) · 3.81 KB
/
contact.html
File metadata and controls
119 lines (99 loc) · 3.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="smallscreen.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>CSS Media Query</title>
</head>
<body>
<!-- logo and navigation area -->
<header>
<!-- logo area -->
<div class="headerWrapper">
<div class="logo">
<img src="./img/logo.png" alt="site logo">
</div>
<!-- navigation area -->
<div class="navWrapper">
<nav id="topNav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">About</a></li>
<li><a href="contact.html">Services</a></li>
<li><a href="contact.html">Feedback</a></li>
<li><a href="contact.html">GST</a></li>
<li><a href="contact.html">Vision</a></li>
<li><a href="contact.html">Contact`</a></li>
</ul>
</nav>
</div>
</div>
</header>
<!-- banner and form area -->
<div class="mainWrapper">
<div class="contactWrap">
<div class="contactOuter">
<div class="contactUs">
<h2>CONTACT US</h2>
</div>
<div class="mapWrap">
<h3>Visit Us</h3>
<iframe id="gMap" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3507.425228224594!2d77.03461831463979!3d28.46673798248343!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x390d19af785e6777%3A0x58c36e3201ba2222!2sWebs+Jyoti!5e0!3m2!1sen!2sin!4v1546488549522" width="400" height="300" frameborder="1" style="border:1" allowfullscreen></iframe>
</div>
<div class="contactForm">
<div class="contactH">
<h2>Let us call you back...</h2>
<form id="contactForm" action="">
<input type="name" placeholder="Your Name"><br>
<input type="email" placeholder="Your email"> <br>
<input type="tel" placeholder="999 456 2525"><br>
<textarea name="message" cols="30" rows="10" placeholder="Type your message here...."></textarea>
<input type="submit" value="Contact Us">
</form>
</div>
</div>
<div class="contactSocial">
<h3>Reach us via social media pages</h3>
<a href="https://www.facebook.com"><i class="fa fa-facebook-official" style="font-size:36px"></i></a>
<a href="https://www.twitter.com"><i class="fa fa-twitter-square" style="font-size:36px"></i></a>
<a href="https://www.youtube.com"><i class="fa fa-youtube-square" style="font-size:36px"></i></a>
<a href="https://www.linkedin.com"><i class="fa fa-linkedin-square" style="font-size:36px"></i></a>
</div>
</div>
</div>
</div>
<!-- main wrapper ends here -->
<footer>
<div class="footerWrapper">
<div class="footerWigs">
<div class="abtUs">
<h2>About Us</h2>
</div>
<p>At ITC Logistics Our approach focuses on how we deliver operational excellence to provide viable, cost-effective technology-enabled solutions to the most challenging logistics & supply chain management questions. We reciprocate through our work entirely with a progressive mindset. “YOU TRUST US, WE CARE”. Whether a small, medium or a large business.</p>
</div>
<div class="footerWigs1">
<h2>Quick Links</h2>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contacts</a></li>
</ul>
</div>
</div>
<div id="copyAndSMicons">
<div class="copy">
© 2019
</div>
<div class="SMicons">
<a href="https://www.facebook.com"><i class="fa fa-facebook-official" style="font-size:36px"></i></a>
<a href="https://www.twitter.com"><i class="fa fa-twitter-square" style="font-size:36px"></i></a>
<a href="https://www.youtube.com"><i class="fa fa-youtube-square" style="font-size:36px"></i></a>
<a href="https://www.linkedin.com"><i class="fa fa-linkedin-square" style="font-size:36px"></i></a>
</div>
</div>
</footer>
</body>
</html>