-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcontactus.html
119 lines (109 loc) · 6.56 KB
/
contactus.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
<!DOCTYPE HTML>
<html>
<head>
<title>Contact</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="myjs.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Poppins">
<link rel="stylesheet" href="mycss.css">
</head>
<style type="text/css">
label{
color: white;
}
</style>
<body>
<nav class="navbar navbar-inverse" style="border-radius:0px !important; margin:0;border: 0">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Airline-X</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="booking.html">Booking</a></li>
<li><a href="information.html">About Us</a></li>
<li class="active"><a href="contactus.html">Contact Us</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#"><span class="glyphicon glyphicon-log-in"></span> Login</a></a></li>
</ul>
<form class="navbar-form navbar-right">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search">
<div class="input-group-btn">
<button class="btn btn-default" type="submit">
<i class="glyphicon glyphicon-search"></i>
</button>
</div>
</div>
</form>
</div>
</div>
</nav>
<div class="background-wrapper" style="background-image: url(images/airline/c.jpg);">
<!--header-->
<div class="container-fluid">
<header>
<h2>Contact Us</h2>
<hr>
</header>
<!--panel-->
<div class="col-sm-6 col-sm-offset-3">
<div class="panel-group panel-transparent">
<div class="panel panel-default panel-transparent">
<div class="panel-heading">
<legend style="text-align: center;">Contact Information</legend>
</div>
<div class="panel-body" style="">
<form class="form-horizontal" style="padding: 0 5rem 0 5rem; width: 100%; inner:100%">
<div class="form-group">
<label for="email">Email</label>
<input type="email" class="form-control trans-input-area" placeholder="Email" id="email" required>
</div>
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control trans-input-area" placeholder="Name" name="" id="name" required>
</div>
<div class="form-group">
<label for="Country">Country</label>
<input type="text" class="form-control trans-input-area" placeholder="Country" name="" id="Country" required>
</div>
<div class="form-group">
<label for="subject">Message</label>
<textarea id="subject" class="trans-input-area" placeholder="Write something.." style="height:200px; width: 100%"></textarea>
</div>
<div class="input-group-btn" style="margin: 0;padding: 0;">
<button class="btn btn-block trans-input-area" type="submit"><i class="glyphicon glyphicon-send"></i> Send</button>
</div>
</form>
</div>
</div>
</div>
</div>
<br>
</div>
<!-- Footer -->
<footer id="footer" style="">
<div class="container-fluid">
<ul class="icons">
<li><a href="#" class="fa fa-twitter" style="color: grey"></a></li>
<li><a href="#" class="fa fa-facebook" style="color: grey"></a></li>
<li><a href="#" class="fa fa-instagram" style="color: grey"></a></li>
<li><a href="#" class="fa fa-envelope" style="color: grey"></a></li>
</ul>
</div>
<div class="copyright">
© Airline-X. All rights reserved.
</div>
</footer>
</body>
</html>