-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontact.html
61 lines (61 loc) · 2.97 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./mainstyle.css">
<script src="https://www.gstatic.com/firebasejs/3.6.2/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyDsXqa0pTr_iaT0-SUUW0g4oE8R8rQW1fQ",
authDomain: "clubsite-3451c.firebaseapp.com",
databaseURL: "https://clubsite-3451c.firebaseio.com",
storageBucket: "clubsite-3451c.appspot.com",
messagingSenderId: "51997785049"
};
firebase.initializeApp(config);
</script>
<script src="jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="./defaultscripts.js"></script>
<script type="text/javascript" src="./databasescript.js"></script>
<title>OMHS CSC</title>
</head>
<!--The head will have an image, most likely a banner-->
<body>
<a href="index.html">
<img id="headbanner" src="./Pictures/OMCSBannerNoBD.png" style="height: 35%;">
</a>
<!--This is the head image, clicking it will take you to the main page?-->
<!--List of options; current options include "Home" "About" "Members" "Contact"-->
<ul class="horiznav">
<div id="navspace">
<a href="index.html"><li class="horiznav">Home</li></a>
<a href="about.html"><li class="horiznav">About</li></a>
<!--<a href="posts.html"><li class="horiznav">Posts</li></a>-->
<a href="members.html"><li class="horiznav">Members</li></a>
<a href="progress.html"><li class="horiznav">Progress</li></a>
<a href="downloads.html"><li class="horiznav">Downloads</li></a>
<a href="contact.html"><li class="horiznav" id="current">Contact</li></a>
<a href="https://hackclub.com/"><li class="horiznav">HackClub</li></a>
<a href="https://github.com/OMHSCompSci"><li class="horiznav"><img src="./Pictures/github-logo.png"/></li></a>
</div>
</ul>
<!--End Header section-->
<!--Begin body-->
<div id="main">
<h2>Need Anything?</h2>
<hr/>
<p>If you have any questions you can either come to a meeting and ask in person (Room 404 on Tuesdays from 2:15 to unkown), or if this isn't an option for you or you prefer online communication, you can email us or Zach specifically using the following emails below. If you have a question about <a href="https://hackclub.com/">HackClub</a>, we may be able to answer your question. If it is more about the organization specifically, we suggest you check out their website.</p>
<ul>
<li>
omhscompsci@gmail.com
</li>
<li>
zaccarr1998@yahoo.com
</li>
</ul>
</div>
</body>
<footer>
This site was created by and for the Oakland Mills Computer Science Club.
</footer>
</html>