forked from BradyLeg/280Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactInfo.html
More file actions
115 lines (96 loc) · 2.99 KB
/
contactInfo.html
File metadata and controls
115 lines (96 loc) · 2.99 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<title>GRC Aviation</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="CSS/styles.css">
<link rel="stylesheet" href="CSS/contactStyles.css">
</head>
<body>
<header>
<img src="Green-River-College-Aviation-Technology.jfif" alt="Website Logo">
<h2>Aviation Technology Contacts</h2>
</header>
<main>
<section>
<nav>
<ul>
<a href="index.html">
<li class="dropdown">Home</li>
</a>
<a href="generalInfo.html">
<li class="dropdown">About</li>
</a>
<a href="programsInfo.html">
<li class="dropdown">Programs</li>
</a>
<a href="contactInfo.html" >
<li class="dropdown">Contact</li>
</a>
</ul>
</nav>
<!--Named grid for Aviation contacts-->
<div class="contactcontainer">
<div id="contactimage1">
<img src="Images/Images-Staff/George-Comollo.jpeg" alt="Place holder image">
<p>George Comollo</p>
</div>
<div id="info1">
<p>BAS - Aviation Program Director</p>
<br>
<a href="mailto:gcomollo@greenriver.edu">gcomollo@greenriver.edu</a>
</div>
<div id="contactimage2">
<img src="Images/Images-Staff/Tad-Henry.jpeg" alt="Place holder image">
<p>Tad Henry</p>
</div>
<div id="info2">
<p>Aviation Instructor</p>
<br>
<a href="mailto:tahenry@greenriver.edu">tahenry@greenriver.edu</a>
</div>
<div id="contactimage3">
<img src="Images/Images-Staff/Frank-Cantwell.jpeg" alt="Image of Frank Cantwell">
<p>Frank Cantwell</p>
</div>
<div id="info3">
<p>Aviation Instructor</p>
<br>
<a href="mailto:fcantwell@greenriver.edu">fcantwell@greenriver.edu</a>
</div>
<div id="contactimage4">
<img src="Images/Images-Staff/Affie-Eyo.jpeg" alt="Image of Affie Eyo">
<p>Affie Eyo</p>
</div>
<div id="info4">
<p>Aviation Program Manager</p>
<br>
<a href="mailto:affiong.eyo@greenriver.edu">affiong.eyo@greenriver.edu</a>
</div>
<div id="contactimage5">
<img src="Images/Images-Staff/Carlton-Lawson.jpeg" alt="Image of Carlton Lawson">
<p>Carlton Lawson</p>
</div>
<div id="info5">
<p>Aviation Program Coordinator</p>
<br>
<a href="mailto:carlton.lawson@greenriver.edu">carlton.lawson@greenriver.edu</a>
</div>
<div id="contactimage6">
<img src="Images/Images-Staff/Jamie-Ealy.jpeg" alt="Image of Jamie Ealy">
<p>Jamie Ealy</p>
</div>
<div id="info6">
<p>Adjunct Faculty - ATC</p>
<br>
<a href="mailto:jamie.ealy@greenriver.edu">jamie.ealy@greenriver.edu</a>
</div>
</div>
</section>
</main>
<!--Footer kept for grey bar on bottom of page (Looks nice)-->
<footer>
</footer>
</body>
</html>