-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlandingpagev1.html
371 lines (296 loc) · 13.8 KB
/
landingpagev1.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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
<!DOCTYPE html>
<html lang="en">
<head>
<title>Trident Technical College</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- JQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- Bootstrap 4 Styles -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- My Stylesheet -->
<link rel="stylesheet" href="css/landingpagev1.css">
<!-- My JS -->
<script src="js/script.js"></script>
<!-- Google Fonts Import -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100;400;600;700&display=swap" rel="stylesheet">
<!-- W3 Styles -->
<link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">
<!-- FA Icons -->
<script src="https://kit.fontawesome.com/6d1b12e77f.js" crossorigin="anonymous"></script>
</head>
<!-- Body Begins -->
<body>
<!----- Styling for Main Container ----->
<div id="mainContainer">
<!-- Top Navigation -->
<div id="topRightNavBar">
<ul id="navbar-items">
<li>
<a href="#">Library</a>
</li>
<li>
<a href="#">Bookstore</a>
</li>
<li>
<a href="#">Catalog</a>
</li>
<li>
<a href="#">Calendars</a>
</li>
<li>
<a href="#">Campuses</a>
</li>
<li>
<a href="#">TTC Portal</a>
</li>
</ul>
</div>
<br>
<!-- logo -->
<div class="logoSection">
<img src="images/TTCLogoRed.svg" id="headerLogo">
</div>
<!-- responsive main nav -->
<nav class="navbar navbar-expand-lg bg-dark navbar-dark justify-content-center sticky-top" id="responsive-nav">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-around" id="collapsibleNavbar">
<ul class="navbar-nav">
<!-- Dropdown -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
Home
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Link 1</a>
<a class="dropdown-item" href="#">Link 2</a>
<a class="dropdown-item" href="#">Link 3</a>
</div>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
About Us
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Link 1</a>
<a class="dropdown-item" href="#">Link 2</a>
<a class="dropdown-item" href="#">Link 3</a>
</div>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
Get Started
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Link 1</a>
<a class="dropdown-item" href="#">Link 2</a>
<a class="dropdown-item" href="#">Link 3</a>
</div>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
Pay for College
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Link 1</a>
<a class="dropdown-item" href="#">Link 2</a>
<a class="dropdown-item" href="#">Link 3</a>
</div>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
Take Classes
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Link 1</a>
<a class="dropdown-item" href="#">Link 2</a>
<a class="dropdown-item" href="#">Link 3</a>
</div>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
Student Resources
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Link 1</a>
<a class="dropdown-item" href="#">Link 2</a>
<a class="dropdown-item" href="#">Link 3</a>
</div>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
Career Help
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Link 1</a>
<a class="dropdown-item" href="#">Link 2</a>
<a class="dropdown-item" href="#">Link 3</a>
</div>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
Support TTC
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Link 1</a>
<a class="dropdown-item" href="#">Link 2</a>
<a class="dropdown-item" href="#">Link 3</a>
</div>
</li>
</ul>
<!-- search form -->
<!-- <form class="form-inline" action="/action_page.php">
<input class="form-control mr-sm-2" type="text" placeholder="Search">
<button class="btn btn-success" type="submit">Search</button>
</form> -->
</div>
</nav>
<!----- Content Container ----->
<div id="contentContainer">
<!----- Header / Intro Box *OPTIONAL ADD ON* ----->
<h1 id="pageHeading">Aircraft Assembly at Trident Technical College</h1>
<!----- Breadcrumbs ----->
<ul class="breadcrumb">
<li><a href="#">Home</a></li>
<li><a href="#">Landing Pages</a></li>
<li>Aircraft Assembly</li>
</ul>
<div class="mt-5" id="twoColumns">
<div class="row">
<div class="col-md-8">
<!----- Campaign Ad Header *OPTONAL ADD-ON* ----->
<div id="headerImage">
<img src="images/aircraft-186.png">
</div>
<h2>Build a great career in the Aircraft Assembly Program</h2>
<p>The Aircraft Assembly Technology program at Trident Tech prepares students for employment in the aviation manufacturing field.</p><p>Learn basic theory of aircraft design and construction, aircraft materials and tools utilized in aircraft assembly. Aircraft assembly technicians are typically employed by companies that produce aircraft for the civilian and military markets.</p>
<!----- Boxed Paragraph *OPTIONAL ADD-ON* ----->
<div id="boxedParagraph">
<p>The Aircraft Assembly Technology program at Trident Tech prepares students for employment in the aviation manufacturing field.</p>
</div>
<!-- Main Content -->
<h2>Why Aircraft Assembly?</h2>
<div class="card-deck">
<div class="card">
<div class="card-body">
<img src="images/landingpages/aircraftAssembly/aa2.jpeg">
<h4 class="card-title">Free Tuition</h4>
<p class="card-text">Get the training you need without the student debt! Qualifying for free tuition is easy!</p>
</div>
</div>
<div class="card">
<div class="card-body">
<img src="images/landingpages/aircraftAssembly/airplace-SCATC.jpeg">
<h4 class="card-title">Hands-On Learning</h4>
<p class="card-text">Learn by doing in high-tech labs with industry-proven instructors. If you like building things involving high levels of technology, this is the program for you.</p>
</div>
</div>
<div class="card">
<div class="card-body">
<img src="images/landingpages/aircraftAssembly/airplace-SCATC.jpeg">
<h4 class="card-title">Work-ready in less than a year</h4>
<p class="card-text">The <a href="#">certificate program</a> takes less than a year to complete.</p>
</div>
</div>
<div class="card">
<div class="card-body">
<img src="images/landingpages/aircraftAssembly/airplace-SCATC.jpeg">
<h4 class="card-title">In-Demand Skills</h4>
<p class="card-text">The tricounty region hosts a number of aircraft manufacturers and their suppliers who are looking for skilled workers. Plus, the skills learned in this program translate to other manufacturing career opportunities.</p>
</div>
</div>
<div class="card">
<div class="card-body">
<img src="images/landingpages/aircraftAssembly/aa2.jpeg">
<h4 class="card-title">Job Satisfaction</h4>
<p class="card-text">Want a rewarding career where you can see the results of your hard work? Building aircraft is a rewarding career. Plus, most aircraft manufacturers offer healthcare benefits and retirement plans as well as good pay.</p>
</div>
</div>
</div>
<hr class="divider">
<p><h2>Get Started</h2></p>
<p><strong>New Students:</strong> Take the two steps below now to get ready to attend classes.</p>
<ol>
<li>Complete the <a href="#">admission application online</a>. There is no application fee!</li>
<li>Complete the <a href="#">Free Application for Federal Student Aid (FAFSA).</a> TTC's school code is <strong>004920</strong>.</li>
</ol>
<p><strong>Returning Students:</strong> If you have not been enrolled during the last three semesters, create an account on <a href="#">Apply Now</a> and complete the online application.</p>
<hr class="divider">
</div>
<!-- Second Column -->
<div class="col-md-2" id="rightColumn">
<button class="applyNow"><a href="#">Apply Now</a></button>
<button class="fafsa"><a href="#">Fill Out FAFSA</a></button><br>
<hr class="dividerSmall">
<h5>Questions?</h5>
<p>Contact Tom Kamenicky, Aircraft Assembly Technology program coordinator, at <a href="#">[email protected]</a> or 843-820-5004.</p>
<hr class="dividerSmall">
<button class="linkRequest"><a href="#">Request More Information</a></button>
<p>Complete the short form at the link above and we will send you college information. You can also call 843-574-6111 or 877-349-7184 (toll free) and email <a>[email protected]</a>.</p>
<hr class="dividerSmall">
<h5>Related Links</h5>
<ul>
<li><a href="#">Link Example 1</a></li>
<li><a href="#">Link Example 2</a></li>
<li><a href="#">Link Example 3</a></li>
<li><a href="#">Link Example 4</a></li>
<li><a href="#">Link Example 5</a></li>
</ul>
</div>
</div>
<!-- Main Section Div Ends -->
</div>
</div>
<!----- Footer //Use Default Footer ----->
<div class="footer">
<footer>
<div class="container-fluid" id="footer-background">
<img src="images/TTCLogo.svg" alt="Trident Tech Logo" id="footerLogo">
<div class="container-fluid" id="footerLinks">
<div class="row">
<div class="col-lg-3">
<ul class="list-unstyled">
<li><a href="#">Request More Information</a></li>
<li><a href="#">Faculty/Staff Resources</a></li>
<li><a href="#">Nondiscrimination Policy</a></li>
<li><a href="#">Title IX Resources</a></li>
</ul>
</div>
<div class="col-lg-3">
<ul class="list-unstyled">
<li><a href="#">Web Accessibility</a></li>
<li><a href="#">Essential Consumer Info</a></li>
<li><a href="#">Privacy Statement</a></li>
<li><a href="#">Site Map</a></li>
</ul>
</div>
<div class="col-lg-3" id="address">
PO Box 118067<br>
Charleston, SC 29423<br>
Info: 843-574-6111<br>
Toll-Free: 877-349-7184<br>
<a href="#">Campus Locations</a>
</div>
<div class="col-lg-3">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3348.7700981573807!2d-80.03149624855118!3d32.93067188083217!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88fe63ea44924ea9%3A0x9f5033d6f22e5b14!2s7000%20Rivers%20Ave%2C%20North%20Charleston%2C%20SC%2029406!5e0!3m2!1sen!2sus!4v1666969328812!5m2!1sen!2sus" width="250" height="185" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade" id="map"></iframe>
</div>
</div>
</div>
</div>
<div class="socialMedia">
<i class="fa-brands fa-square-facebook fa-2x"></i>
<i class="fa-brands fa-square-twitter fa-2x"></i>
<i class="fa-brands fa-instagram fa-2x"></i>
<i class="fa-brands fa-youtube fa-2x"></i>
<i class="fa-brands fa-linkedin fa-2x"></i>
</div>
<div class="copyright">
<p>(c) Trident Technical College</p>
</div>
</footer>
</div>
<!-- main container ends -->
</div>
</body>
</html>