-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
53 lines (51 loc) · 2.62 KB
/
index.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Upsilon Pi Epsilon: The Computer Science Honor Society</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="navbar">
<div class="navbar-logo">
<a href="index.html">
<img src="img/logo.jpg" alt="logo">
</a>
</div>
<navigation-bar current="index.html" sitemap="data/sitemap.json"></navigation-bar>
</div>
<div class="content">
<img src="img/group_photo_2018-19.jpg" alt="Group Photo" class="img-responsive">
<p>Upsilon Pi Epsilon (UPE) is an honor society founded in 1967 to recognize scholarship and professionalism in the Computing
Sciences. In the years since then, over 120 institutions of higher education around the world have established UPE
chapters. It is the only international honor society for the Computing Sciences, and has been officially recognized
by both the <a href="http://acm.org">ACM</a> and the <a href="http://ieee.org">IEEE Computer Society</a>.</p>
<h1>About Our Chapter</h1>
<ul>
<li>The WPI Computer Science Department's chapter was formed in 1974, as the first chapter in Massachusetts.</li>
<li>The Alpha Chapter of Massachusetts was officially recognized in a letter dated September 5, 1974.</li>
<li>It is the seventeenth chapter worldwide.</li>
<li>Dr. Norman Sondak, Department Head of the Computer Science Department, was the original faculty advisor.</li>
<li>The first induction, held on October 21, 1974, saw the initiation of 8 members, including Dr. Sondak.</li>
<li>Bruce Keith (75) was the original student chairman.</li>
</ul>
<h1>Contact Us</h1>
<p>Contact our chapter at <a href="mailto:[email protected]">[email protected]</a> or submit the form below.</p>
<form action="https://formspree.io/[email protected]" method="POST">
<label for="contact-name">Name</label>
<input type="text" name="name" id="contact-name">
<br>
<label for="contact-email">Email</label>
<input type="email" name="email" id="contact-email">
<br>
<label for="contact-message">Message</label>
<textarea name="message" rows="8" cols="80" id="contact-message"></textarea>
<br>
<button type="submit">Submit</button>
</form>
</div>
</body>
<script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js"></script>
<script src="js/components.js" charset="utf-8"></script>
</html>