-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathprogramsInfo.html
More file actions
85 lines (85 loc) · 4.45 KB
/
programsInfo.html
File metadata and controls
85 lines (85 loc) · 4.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>GRC Aviation</title>
<link rel="stylesheet" href="CSS/programsStyles.css">
</head>
<body>
<!-- Header = Brady's code -->
<header>
<div class="image">
<img src="Green-River-College-Aviation-Technology.jfif" alt="Website Logo">
</div>
<div class="title">
<h1 class="webpageTitle">Aviation Technology - Programs</h1>
</div>
</header>
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="generalInfo.html">About</a>
</li>
<li>
<a href="programsInfo.html">Programs</a>
</li>
<li>
<a href="contactInfo.html">Contact</a>
</li>
</ul>
</nav>
<main>
<div class="programCategory">
<h2>Certificates</h2>
<p><a class="linksToDegrees" href="https://catalog.greenriver.edu/preview_program.php?catoid=8&poid=2084" target="_blank"> - Aviation Technology: Airline Dispatcher Completion Certificate</a></p> <br>
<p><a class="linksToDegrees" href="https://catalog.greenriver.edu/preview_program.php?catoid=8&poid=2303" target="_blank"> - Aviation Technology: Air Traffic Controller Certificate</a></p> <br>
<p><a class="linksToDegrees" href="https://catalog.greenriver.edu/preview_program.php?catoid=8&poid=2086" target="_blank"> - Aviation Technology: Aviation Operations Management Certificate</a></p> <br>
<p><a class="linksToDegrees" href="https://catalog.greenriver.edu/preview_program.php?catoid=8&poid=2119" target="_blank"> - Aviation Technology: Basic Aviation Knowledge Certificate</a></p> <br>
<p><a class="linksToDegrees" href="https://catalog.greenriver.edu/preview_program.php?catoid=8&poid=2213" target="_blank"> - Aviation Technology: Unmanned Aerial Vehicles Cyber Security Certificate</a></p> <br>
<p><a class="linksToDegrees" href="https://catalog.greenriver.edu/preview_program.php?catoid=8&poid=2214" target="_blank"> - Aviation Technology: Unmanned Aerial Vehicles Digital Photography Certificate</a></p>
</div>
<div class="programCategory">
<h2>Associates</h2>
<p><a class="linksToDegrees" href="https://catalog.greenriver.edu/preview_program.php?catoid=8&poid=2209" target="_blank"> - Aviation Technology AAS</a></p> <br>
<p><a class="linksToDegrees" href="https://catalog.greenriver.edu/preview_program.php?catoid=8&poid=2175" target="_blank"> - Aviation Technology: Unmanned Aerial Systems AAS</a></p>
</div>
<div class="programCategory">
<h2>Bachelors</h2>
<p><a class="linksToDegrees" href="https://catalog.greenriver.edu/preview_program.php?catoid=8&poid=2046" target="_blank"> - Aeronautical Science BAS</a></p>
<p>For additional information: <a class="linksToDegrees" href="https://www.greenriver.edu/students/academics/degrees-programs/bachelor-of-applied-science/bachelors-in-aeronautical-science/index.html" target="_blank">Read Here</a></p>
</div>
</main>
<!-- Footer = Abdi's Code -->
<footer>
<div class="footer-container" style="display: flex; justify-content: space-around; padding: 20px; background-color: #f4f4f4; color: #333;">
<div class="footer-column" style="flex: 1; margin: 10px;">
<h3>Contact Information</h3>
<p>BAS - Aviation Program Director</p>
<p>Aviation Instructor</p>
<p>Aviation Instructor</p>
<p>Aviation Program Manager</p>
<p>Aviation Program Coordinator</p>
</div>
<div class="footer-column" style="flex: 1; margin: 10px;">
<h3>Staff</h3>
<p>George Comollo</p>
<p>Tad Henry</p>
<p>Frank Cantwell</p>
<p>Affie Eyo</p>
<p>Carlton Lawson</p>
</div>
<div class="footer-column" style="flex: 1; margin: 10px;">
<h3>Email</h3>
<p><a href="mailto:gcomollo@greenriver.edu" style="color: #0078D4; text-decoration: none;">gcomollo@greenriver.edu</a></p>
<p><a href="mailto:tahenry@greenriver.edu" style="color: #0078D4; text-decoration: none;">tahenry@greenriver.edu</a></p>
<p><a href="mailto:fcantwell@greenriver.edu" style="color: #0078D4; text-decoration: none;">fcantwell@greenriver.edu</a></p>
<p><a href="mailto:affiong.eyo@greenriver.edu" style="color: #0078D4; text-decoration: none;">affiong.eyo@greenriver.edu</a></p>
<p><a href="mailto:carlton.lawson@greenriver.edu" style="color: #0078D4; text-decoration: none;">carlton.lawson@greenriver.edu</a></p>
</div>
</div>
</footer>
</body>
</html>