-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact us.php
More file actions
132 lines (123 loc) · 4.21 KB
/
contact us.php
File metadata and controls
132 lines (123 loc) · 4.21 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
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html>
<head>
<title>ITS | Contact Us</title>
<link rel="icon" href="Images/icon.jpg">
<link rel="stylesheet" type="text/css" href="index.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style type="text/css">
hr{
width: 100px;
color:red;
background-color:#7cfc00;
}
.j1{
text-align: center;
background:url("Images/meetingb.jpg") fixed center;
color:#000;
}
.active{
border-bottom:3px solid skyblue;
}
.form-group{
width:800px;
height:600px;
text-align: center;
margin-left:250px;
color:#fff;
}
.navbar a:hover{
border-bottom:3px solid skyblue;
}
.nav-item{
padding-right: 20px;
letter-spacing: 2px;
font-weight: bold;
}
.f1{
float: left;
margin-right: 100px;
}
.f3,.f3 a{
text-align: center;
font-size:28px;
color:red;
padding-right:29px;
background-color:white;
}
</style>
</head>
<body>
<!--Nav-->
<nav class="navbar navbar-expand-md bg-light navbar-light sticky-top">
<!--LOGO-->
<a href="index.php" class="navbar-brand">
<img src="Images/logo.png" alt="logo" height="70px" width="150px">
</a>
<!--collapsebutton-->
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#my">
<span class="navbar-toggler-icon"></span>
</button>
<!--Links-->
<div class="collapse navbar-collapse" id="my">
<ul class="navbar-nav">
<li class="nav-item"><a href="index.php" class="nav-link ">HOME</a></li>
<li class="nav-item"><a href="packages.php" class="nav-link">PACKAGES</a></li>
<li class="nav-item"><a href="aboutus.php" class="nav-link">ABOUT US</a></li>
<li class="nav-item"><a class="nav-link active" href="contact us.php">CONTACT US</a></li>
</ul>
</div>
</nav>
<!--contact-us-->
<div class="jumbotron j1">
<h1>Contact Us</h1><hr>
<h5>
HERE IS EVERYTHING THAT YOU NEED TO CONTACT US. <br>
PLEASE USE THIS INFORMATION WISELY AND VALUE OUR TIME SO THAT WE CAN SERVE YOU MORE.
</h5>
<br><br><br><br>
<h5>E-Mail :</h5>
<p>Drop a mail at example@gmail.com.</p>
<h5> Send Us Old Mail School :</h5>
<p>Yep,You Guess Right. The Postman will deliver At below Address:<br>#3624, 3RD FLOOR, SEARS COMPLEX OPP. BSNL EXCHANGE, BHARAT NAGAR CHOWK, Jila Kacheri Area, Model Gram, Ludhiana, Punjab 141001</p>
<h5> Drop A Message At Our Social Pages :</h5>
<p>All Social Links are given at the bottom of the page.</p>
<h5>Find us:</h5>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d381.23722749702904!2d75.83926934137884!3d30.90359455061282!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x52f988efa1fd5470!2sGtech+Softwares!5e0!3m2!1sen!2sin!4v1534573867270" width="500" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
<!--Footer-->
<div class="jumbotron j2">
<div class="f1">
<h5>LEGAL POLICY's</h5>
<ul>
<li><a href="#">Terms & Conditions</a></li>
<li><a href="#">Disclaimer</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Support</a></li>
</ul>
</div>
<div class="f2">
<h5>ABOUT US</h5>
<ul>
<li><a href="#">Investors</a></li>
<li><a href="#">Partners</a></li>
<li><a href="#">Visitors</a></li>
<li><a href="#">Support</a></li>
</ul>
</div>
</div>
<div class="f3">
<a href="" class="fa fa-facebook-official"></a>
<a href="" class="fa fa-instagram"></a>
<a href="" class="fa fa-twitter"></a>
<a href="" class="fa fa-youtube"></a>
<a href="" class="fa fa-linkedin"></a>
<a href="" class="fa fa-telegram"></a>
</div>
</body>
</html>