forked from regalcat/club-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
103 lines (97 loc) · 5.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Document meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Other meta -->
<meta name="description" content="The Web Development Club at Iowa State University is a community of students who want to learn about and practice web development.">
<meta name="author" content="ISU Web Dev Club members">
<link rel="icon" href="favicon.ico">
<title>Contact | Web Development Club</title>
<!-- Vendor CSS -->
<link rel="stylesheet" href="static/vend/bootstrap-3.3.5/bootstrap.min.css" />
<link rel="stylesheet" href="static/vend/bootstrap-3.3.5/bootstrap-theme.min.css" />
<link rel="stylesheet" href="static/vend/font-awesome-4.4.0/font-awesome.min.css" />
<link rel="stylesheet" href="static/vend/bootstrap-social-4.10.1.css" />
<!-- Custom CSS -->
<link href="static/css/site-theme.css" rel="stylesheet">
<link href="static/css/jumbotron.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="navbar"></div>
<div class="bg">
<img src="_images/divider.png" alt="chalkboard shelf">
</div>
<div class="jumbotron">
<div class="container">
<h1>Want to join, request a project, or sponsor us?</h1>
</div>
</div>
<!-- Form for requests -->
<div class="container links-on-black">
<h2 class="page-header">Contact Us</h2>
<div class="col-lg-8 col-md-10">
<h3>Joining</h3>
<p>There are no requirements, no dues, and no prior knowledge of web development is necessary. All majors are welcome. If you want to join, visit our <a href="https://www.stuorg.iastate.edu/site/web-dev-club">Student Organization page</a> and click <strong>Join</strong> or <strong>Subscribe</strong>. After doing this, you will receive weekly emails about upcoming meetings.</p>
<h3>Project Requests</h3>
<p>
Shoot us an <a href="mailto:[email protected]">email</a> if you're interested in WDC making your next website.
Make sure you try to include as much detail as necessary to convey the scope of the project.
That helps members determine if they have the time/resources to tackle it.
</p>
<p>Below are a few of the questions we consider when approaching a possible project:</p>
<ul>
<li>What do want the website to accomplish?</li>
<li>When does it need to be finished? Is that deadline flexible?</li>
<li>Is this a re-design of a previous website? If so, what changes are you looking for?</li>
<li>Do you have a few examples of existing websites that have a similar look/feel as what you're trying to achieve?</li>
<li>Are you wanting a simple landing page website? Or will it have multiple pages and sub-pages?</li>
<li>Is design-work needed or do you already have a design for the website?</li>
<li>Is there already content (written text, artwork, etc.) or will that need to be created?</li>
<li>Will there be a blog or any other kind of dynamic content?</li>
<li><strong>Will the website be selling anything or be used for commercial purposes?</strong> We cannot do these projects as a university club, but individual members may want to get involved.</li>
</ul>
<p>
If you don't know the answers to all those questions right away, that's okay! But it will
help us better determine if we'll be able to help you.
</p>
<p>
<strong>One more thing</strong>: You'll have better luck if you approach us towards the
beginning of a semester, since everyone tends to get busy with schoolwork about
halfway through the semester.
</p>
<h3>Sponsorship</h3>
<p>Does your company or organization want to connect with and support dedicated, creative students? Fill out the form below and we'll get in touch!</p>
<br>
<p style="font-size: 2rem;">
<a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
</div>
<br>
<div id="footer"></div>
<!-- Vendor JS -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script type="text/javascript" src="static/js/ie10-viewport-bug-workaround.js"></script>
<script type="text/javascript" src="static/vend/bootstrap-3.3.5/bootstrap.min.js"></script>
<script type="text/javascript" src="static/vend/react-0.13.3/react.min.js"></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<!-- Custom JSX -->
<!-- Note: This page doesn't parallax the jumbotron because it makes the page bounce -->
<script type="text/jsx" src="static/js/navbar.jsx"></script>
<script type="text/jsx">
React.render(
<NavBar active="Contact Us" />,
document.getElementById('navbar')
);
</script>
<script type="text/jsx" src="static/js/footer.jsx"></script>
</body>
</html>