-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
127 lines (106 loc) · 5.92 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Game Development Association | Contact </title>
<link rel="stylesheet" type="text/css" href="css/large-size.css">
<link rel="stylesheet" type="text/css" href="css/small-size.css" media="only screen and (max-width:700px)">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Exo+2:400,400i,700,700i&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
</head>
<body class = "vega-background">
<script>
$( document ).ready(function() {
$( ".cross" ).hide();
$( ".menu" ).hide();
$( ".hamburger" ).click(function() {
$( ".menu" ).slideToggle( "slow", function() {
$( ".hamburger" ).hide();
$( ".cross" ).show();
});
});
$( ".cross" ).click(function() {
$( ".menu" ).slideToggle( "slow", function() {
$( ".cross" ).hide();
$( ".hamburger" ).show();
});
});
});
</script>
<div id="wrapper" class="navbar">
<header>
<a href="index.html"><img src = "images/gda_logo_white.png" alt = "Game Development Association"></a>
<div class="offscreen"><a href="#content">Skip Navigation</a> </div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="project-vega.html">Project Vega</a></li>
<li><a href="project-sirius.html">Project Sirius</a></li>
<li><a href="project-altair.html">Project Altair</a></li>
<li><a href="hexago.html">Hexago</a></li>
<li><a href="artwork.html">Art Work</a></li>
<li><a href="recommended-apps.html">Recommended Apps</a></li>
<li><a href="oldindex.html">Old Website</a></li>
</ul>
</nav>
<div id="mobile">
<button class="hamburger">≡</button>
<button class="cross">x</button>
</div>
<div class="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="project-vega.html">Project Vega</a></li>
<li><a href="project-sirius.html">Project Sirius</a></li>
<li><a href="project-altair.html">Project Altair</a></li>
<li><a href="hexago.html">Hexago</a></li>
<li><a href="artwork.html">Art Work</a></li>
<li><a href="recommended-apps.html">Recommended Apps</a></li>
<li><a href="oldindex.html">Old Website</a></li>
</ul>
</div>
<div id = "project-logo">
<p>Contact<p>
</div>
</header>
<div id="content">
<div id = "main">
<p>At the current moment there is only two main contacts for the Game Development Association as well as a teaching assistant contact link but they don't necessarly have as much influence in terms of the association.</p>
<div id=dylan-plomondon>
<h2>GDA President Dylan Plomondon</h2>
<p>Dylan Plomondon is the current president of the game development association as well as the primary developer of the new GDA website. He can be reached by emailing the primary GDA email address <a href= "mailto:csugamedevelopmentassociation@gmail.com">csugamedevelopmentassociation@gmail.com</a>.</p>
<p>Dylan can also be reached by messaging him directly at plom.dylan04@gmail.com or by sending a message to him on <a href="https://ramlink.campuslabs.com/engage/organization/gamedevelopmentassociation">Ramlink</a>.</p>
</div>
<div id = "jonathan-griego">
<h2>GDA Treasurer Jonathan Griego</h2>
<p>Jonathan Griego is currently the treasurer of the Game Development Association which is a really means he's the Vice President but CSU prefers a President and Treasurer setup.</p>
<p>He can also be messaged on our <a href="https://ramlink.campuslabs.com/engage/organization/gamedevelopmentassociation">Ramlink</a>.</p>
</div>
<div id = "teacher-advisor">
<h2>Teaching Advisor Benjamin Say</h2>
<p>Benjamin Say is the current teacher assistant of the game development association which means they are the teacher involved with the organization. He has a <a href="https://www.cs.colostate.edu/~bsay/">website</a> stating the ways he prefers to be contacted as well as his office hours. </p>
</div>
</div>
<div id = "sidebar">
<ul>
<li><div class="image-background"><a href="#dylan-plomondon">President</a></div></li>
<li><div class="image-background"><a href="#jonathan-griego">Treasurer</a></div></li>
<li><div class="image-background"><a href="#teacher-advisor">Teaching Advisor </a></div></li>
</ul>
</div>
</div>
<a name = "test"></a>
<div id = "footer">
<div><h3>Upcoming meetings</h3>
<p>We tend to meet on Thursdays in the Visual Arts Building at Colorado State University room F115. The meeting time is from 7:00PM to 8:00PM.</p></div>
<div><h3>Contact Current Team</h3>
<p> If you see any issue or inaccuracies with the site please contact the current team at <a href= "mailto:csugamedevelopmentassociation@gmail.com">csugamedevelopmentassociation@gmail.com</a>. We will review your issue and make the necessary fixes.</p></div>
<div><h3>Want to Join?</h3>
<p>We are always interested in having new people join our club. Visit our <a href="https://ramlink.campuslabs.com/engage/organization/gamedevelopmentassociation">Ramlink</a> and send us a registration request today.</p></div>
</div>
</div>
</body>
</html>