-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathContact.html
195 lines (173 loc) · 9.46 KB
/
Contact.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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE html>
<html>
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.rawgit.com/kieranjohnmc/f5860bcff1938acb410b2082bf6c7781/raw/0b7daa3e5894f1c628945f132dc1ca114b7046d3/index.css">
<link rel="stylesheet" href="css/map.css">
</head>
<body onscroll="navscroll()" id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
<nav id="navbar" class="navbar navbar-fixed-top" style="background-color: #282928; height: 75px">
<div class="container">
<div class="navbar-header navbar-right" style="margin-top: 8px;">
<span id="toggler" class="glyphicon glyphicon-menu-hamburger navbar-right icon" onclick="openNav()" style="right: 50px"></span>
</div>
<div class="navbar-collapse collapse">
</div>
</div>
</nav>
<div id="mySidenav" class="sidenav">
<a href="index.html">Home</a>
<a href="awards.html">Awards</a>
<href="http://localhost:1337/">Contact Us</a>
<a href="Location.html">Find Us</a>
<a href="#" class="dropdown-toggle">Apprenticeships<span class="caret"></span></a>
<ul>
<li><a href="Apprentices_IT.html" style="font-size: 12px; margin-left: -30px;">IT Infrastructure</a></li>
<li><a href="Apprentices_Networking.html" style="font-size: 12px; margin-left: -30px;">Networking</a></li>
<li><a href="Apprentices_SoftwareDev.html" style="font-size: 12px; margin-left: -30px;">Software Engineering</a></li>
<li><a href="Apprentices_CreativeMedia.html" style="font-size: 12px; margin-left: -30px;">Creative Media</a></li>
<li><a href="Apprentices_DigitalMarketing.html" style="font-size: 12px; margin-left: -30px;">Digital Marketing</a></li>
</ul>
<a href="#" class="dropdown-toggle">Degree Apprenticeships<span class="caret"></span></a>
<ul>
<li><a href="Degree_IT.html" style="font-size: 12px; margin-left: -30px;">Degree IT Infrastructure</a></li>
<li><a href="Degree_Computing.html" style="font-size: 12px; margin-left: -30px;">Degree Computing</a></li>
<li><a href="Degree_CreativeMedia.html" style="font-size: 12px; margin-left: -30px;">Degree Creative Media</a></li>
<li><a href="Degree_Marketing.html" style="font-size: 12px; margin-left: -30px;">Degree Marketing</a></li>
</ul>
</div>
<!-- Content -->
<div id="main">
<div class="container">
<div class="row">
<div class="col-md-2">
<!--page padding-->
</div>
<div class="col-md-8">
<!-- Main Contect -->
<center>
<h2 style="padding-top: 75px">Contact Us</h2>
</center>
</div>
<div class="col-md-2">
<!--page padding-->
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<html>
<body>
<form class="form-horizontal" action="" method="post" enctype="multipart/form-data" style="margin-left: 500px;">
<fieldset>
<div class="form-group">
<label for="name" class="col-sm-2 control-label">Name</label>
<div class="col-sm-4">
<input class="form-control" type="text" id="name" name="name" placeholder="Enter your full name">
</div>
</div>
<div class="form-group">
<label for="email" class="col-sm-2 control-label">Email</label>
<div class="col-sm-4">
<input class="form-control" type="email" id="email" name="email" placeholder="Enter your email address">
</div>
</div>
<div class="form-group">
<label for="description" class="col-sm-2 control-label">Message</label>
<div class="col-sm-4">
<textarea class="form-control" id="description" name="description" placeholder="Enter a short description about yourself" rows="4"></textarea>
</div>
</div>
<div class="form-group">
<div class="col-sm-4 col-sm-offset-2">
<input id="submit" name="submit" type="submit" value="Send" class="btn btn-primary">
</div>
</div>
</fieldset>
</form>
</body>
</html>
</div>
</div>
</div>
<script>
var sidenav = document.getElementById("mySidenav");
var main = document.getElementById("main");
var navbar = document.getElementById("navbar");
var toggler = document.getElementById("toggler");
var dropper = document.getElementById("tog");
var dd1 = document.getElementById("dd1");
var dd1 = document.getElementById("dd2");
function openNav() {
if (sidenav.style.width == "0px" && main.style.marginRight == "0px") {
sidenav.style.width = "250px";
main.style.marginRight = "200px";
toggler.style.right = "200px";
} else {
sidenav.style.width = "0";
main.style.marginRight = "0";
toggler.style.transition = "0.5s";
toggler.style.right = "50px";
}
}
</script>
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
<footer> <!-- Start Of Footer -->
<div class="row">
<div class="col-md-3">
<h2>First Choice</h2>
<address>
<strong>First Choice, Inc.</strong><br>
Address: Stafford Park 11,<br>
Telford TF3 3AY<br>
<abbr title="Phone">P:</abbr>0330 588 8000
</address>
<p>© 2017 Space Marines, All rights reserved</p>
</div>
<div class="col-md-6" style="border-left:1px solid #cecccc; height:200px">
<h4>Apprenticeships</h4>
<div class="col-md-4">
<ul class="pages">
<li><a href="Apprentices_IT.html">IT Infrastructure</a></li>
<li><a href="Apprentices_Networking.html">Networking</a></li>
<li><a href="Apprentices_SoftwareDev.html">Software Engineering</a></li>
<li><a href="Apprentices_CreativeMedia.html">Creative Media</a></li>
<li><a href="Apprentices_DigitalMarketing.html">Digital Marketing</a></li>
</ul>
</div>
<div class="col-md-4">
<ul class="pages">
<li><a href="Degree_IT.html">Degree IT Infrastructure</a></li>
<li><a href="Degree_Computing.html">Degree Computing</a></li>
<li><a href="Degree_CreativeMedia.html">Degree Creative Media</a></li>
<li><a href="Degree_Marketing.html">Degree Marketing</a></li>
</ul>
</div>
<div class="col-md-3">
<ul class="list">
<li><a href="index.html">Homepage</a></li>
<li><a href="awards.html">Awards</a></li>
<li><a href="Location.html">Location</a></li>
<li><href="http://localhost:1337/>Contact us</a></li>
</ul>
</div>
</div>
<div class="col-md-2" style="border-left:1px solid ; height:200px">
<h4>Follow Us</h4>
<ul>
<li><a href="https://www.facebook.com/">Facebook</a></li>
<li><a href="https://twitter.com/">Twitter</a></li>
<li><a href="https://www.linkedin.com/">Linkedin</a></li>
<li><a href="https://www.youtube.com/">Youtube</a></li>
</ul>
</div>
</div>
</footer> <!-- End Of Footer -->
</html>