Skip to content

Commit f813591

Browse files
committed
2018 Website update
1 parent 52d795e commit f813591

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+594
-871
lines changed

about.html

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<title>BuildHer Hackathon</title>
5+
<meta charset="utf-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<!--Favicon-->
9+
<link href="images/favicon.ico" rel="shortcut icon" type="image/x-icon">
10+
<!--CSS-->
11+
<!-- Latest compiled and minified CSS -->
12+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
13+
<link rel="stylesheet" href ="style.css" type="text/css">
14+
<!--Fonts-->
15+
<link href="https://fonts.googleapis.com/css?family=Bungee+Inline|Lobster|Muli" rel="stylesheet">
16+
<!-- jQuery library -->
17+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
18+
<!-- Latest compiled JavaScript -->
19+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
20+
</head>
21+
22+
<body class="about">
23+
<!--Nav Bar-->
24+
<nav class="navbar navbar-static-top">
25+
<div class="navbar-header">
26+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
27+
<span class="sr-only">Toggle navigation</span>
28+
<span class="icon-bar" style="background-color:gray;"></span>
29+
<span class="icon-bar" style="background-color:gray;"></span>
30+
<span class="icon-bar" style="background-color:gray;"></span>
31+
</button>
32+
</div>
33+
<div class="container">
34+
<div id="navbar" class="collapse navbar-collapse">
35+
<ul class="nav navbar-nav navbar-right">
36+
<li><a href="index.html">home</a></li>
37+
<li><a href="about.html">about</a></li>
38+
<li><a href="faq.html">faq</a></li>
39+
<li><a href="team.html">team</a></li>
40+
</ul>
41+
</div>
42+
</div>
43+
</nav>
44+
45+
<!--About Boxes-->
46+
<div class="row about">
47+
<h3 class="header-text">What is BuildHer?</h3>
48+
<div class="col-sm-4">
49+
<h1 class="about">Build<span class="her">confidence</span></h1>
50+
<p class="about body-text">You can't mess up here! BuildHer fosters the environment to experiment, grow, and learn from mistakes, be it your first time coding or your first time applying it to a new art or career discipline. Mentors and groups are there to help you experiment and leave with a greater wealth of experience.</p>
51+
</div>
52+
<div class="col-sm-4">
53+
<h1 class="about">Build<span class="her">community</span></h1>
54+
<p class="about body-text">Our goal is for you to make connections based on your shared values and interests that will follow you out the door and into the rest of your life, no matter what career you’re pursuing. We encourage idea sharing and troubleshooting with those around you so that by the end of the event, you’ll have a network of creators to comfortably reach out to.</p>
55+
</div>
56+
<div class="col-sm-4">
57+
<h1 class="about">Build<span class="her">creativity</span></h1>
58+
<p class="about body-text">Even if you go into BuildHer with absolutely no idea what you want to make, you’ll leave with a tangible, incredible project. Not only will you have the achievement of making something of your own, but your project is yours to keep working on. Many successful products have stemmed from hackathons, and there’s no saying that your project won’t be the next hit product on the market!</p>
59+
</div>
60+
</div>
61+
62+
<!--Mission Section-->
63+
<div class="row about">
64+
<h3 class="header-text">Our Mission</h3>
65+
<p class="about body-text">BuildHer was founded with the intent of promoting diversity and inclusion within the tech community in the Chicago area. BuildHer will serve as a space for female, nonbinary and transgender beginner coders to learn with the encouragement and guidance of other femme coders, and for more experienced coders to explore interdisciplinary applications of technology, regardless of their individual career paths or majors. </p>
66+
<p class="about body-text">Coding is not something that is limited in its usefulness to computer scientists - instead, we constantly hear of entrepreneurs making their own app for their business, or artists mixing traditional mediums with digital ones. BuildHer wants newcomers and experts alike to experiment with using code in different contexts and to walk away with the skills to use throughout their life. </p>
67+
<br><br><br>
68+
</div>
69+
70+
<!--Sponsorship-->
71+
<div class="row about">
72+
<h3 class="header-text">Interested in Sponsoring?</h3>
73+
<p class="about body-text">Interested in sponsoring BuildHer 2018? Check out our <a href="files/2018sponsor.pdf" id="sponsorlink">sponsorship opportunities</a>and reach out to <a href="mailto:[email protected]">[email protected]</a>with interest or questions!</p>
74+
</div>
75+
76+
<!-- Left and right controls -->
77+
<a class="left carousel-control" href="index.html" data-slide="prev">
78+
<span class="glyphicon glyphicon-chevron-left"></span>
79+
<span class="sr-only">Previous</span>
80+
</a>
81+
<a class="right carousel-control" href="faq.html" data-slide="next">
82+
<span class="glyphicon glyphicon-chevron-right"></span>
83+
<span class="sr-only">Next</span>
84+
</a>
85+
86+
87+
<!-- Bootstrap core JavaScript
88+
================================================== -->
89+
<!-- Placed at the end of the document so the pages load faster -->
90+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
91+
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
92+
<script src="../../dist/js/bootstrap.min.js"></script>
93+
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
94+
<script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
95+
</body>
96+
</html>

faq.html

+110
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<title>BuildHer Hackathon</title>
5+
<meta charset="utf-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<!--Favicon-->
9+
<link href="images/favicon.ico" rel="shortcut icon" type="image/x-icon">
10+
<!--CSS-->
11+
<!-- Latest compiled and minified CSS -->
12+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
13+
<link rel="stylesheet" href ="style.css" type="text/css">
14+
<!--Fonts-->
15+
<link href="https://fonts.googleapis.com/css?family=Bungee+Inline|Lobster|Muli" rel="stylesheet">
16+
<!-- jQuery library -->
17+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
18+
<!-- Latest compiled JavaScript -->
19+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
20+
</head>
21+
22+
<body class="faq">
23+
<!--Nav Bar-->
24+
<nav class="navbar navbar-static-top">
25+
<div class="navbar-header">
26+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
27+
<span class="sr-only">Toggle navigation</span>
28+
<span class="icon-bar" style="background-color:gray;"></span>
29+
<span class="icon-bar" style="background-color:gray;"></span>
30+
<span class="icon-bar" style="background-color:gray;"></span>
31+
</button>
32+
</div>
33+
<div class="container">
34+
<div id="navbar" class="collapse navbar-collapse">
35+
<ul class="nav navbar-nav navbar-right">
36+
<li><a href="index.html">home</a></li>
37+
<li><a href="about.html">about</a></li>
38+
<li><a href="faq.html">faq</a></li>
39+
<li><a href="team.html">team</a></li>
40+
</ul>
41+
</div>
42+
</div>
43+
</nav>
44+
45+
<div class="row faq">
46+
<h3 class="header-text">Frequently Asked Questions</h3>
47+
<div class="col-sm-4">
48+
<h1 class="faq" id="q1">What is a hackathon?</h1>
49+
<p class="faq body-text" id="a1">A hackathon is an event where people get together to work on developing software projects in a short amount of time; BuildHer is 24 hours. Participants form a team, come up with an idea, plan for their idea and then implement the code for it.</p>
50+
</div>
51+
<div class="col-sm-4">
52+
<h1 class="faq" id="q5">What should I bring?</h1>
53+
<p class="faq body-text" id="a5">Please bring a student or government-issued ID, a laptop, phone and chargers for both. Also, since this is an overnight event, you may want to bring a change of clothes, sleeping bag and toiletries.</p>
54+
</div>
55+
<div class="col-sm-4">
56+
<h1 class="faq" id="q3">How much does it cost?</h1>
57+
<p class="faq body-text" id="a3">BuildHer is completely free for all participants. We provide meals, drinks, snacks, workshops, swag from our sponsors and a great experience!</p>
58+
</div>
59+
</div>
60+
61+
<div class="row faq">
62+
<div class="col-sm-4">
63+
<h1 class="faq" id="q4">What if I don't know how to code?</h1>
64+
<p class="faq body-text" id="a4">Don't worry! People at <i>all</i> levels of experience (including none) are welcome! There will be specific workshops to help introduce anyone to coding and mentors will be happy to help you out! :)</p>
65+
</div>
66+
<div class="col-sm-4">
67+
<h1 class="faq" id="q2">Who can participate?</h1>
68+
<p class="faq body-text" id="a2">BuildHer is open to all individuals who identify as female, nonbinary or transgender. You must also be at least 18 years old to attend. JOIN US!</p>
69+
</div>
70+
<div class="col-sm-4">
71+
<h1 class="faq" id="q6">What if I don't have an idea?</h1>
72+
<p class="faq body-text" id="a6">You are not expected to come to the hackathon with a complete idea! We will have mentors around to help participants think of ideas and implement them. There will also be time for brainstorming at the beginning of the event.</p>
73+
</div>
74+
</div>
75+
76+
<div class="row faq">
77+
<div class="col-sm-4">
78+
<h1 class="faq" id="q7">What if I don't have a team?</h1>
79+
<p class="faq body-text" id="a7">More opportunity to make new friends, am I right? But in all seriousness, you don’t have to come into BuildHer with any sort of team or pairing in order to succeed. There are plenty of events planned during the hackathon where participants will be able to meet one another and have fun. Plus, a lot of participants form teams at the start of the hackathon anyway!</p>
80+
</div>
81+
<div class="col-sm-4">
82+
<h1 class="faq" id="q8">Where will I stay during BuildHer?</h1>
83+
<p class="faq body-text" id="a8">BuildHer 2018 is being held on the Northwestern University Evanston campus and all participants will be in reserved rooms and spaces for the duration of the event. There will be plenty of space to spread out and do different activities, as well as designated places to sleep or take naps!</p>
84+
</div>
85+
<div class="col-sm-4">
86+
<h1 class="faq" id="q9">Where can I find the code of conduct?</h1>
87+
<p class="faq body-text" id="a9">The MLH Code of Conduct can be found <a href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf">here.</a></p>
88+
</div>
89+
</div>
90+
91+
<!-- Left and right controls -->
92+
<a class="left carousel-control" href="about.html" data-slide="prev">
93+
<span class="glyphicon glyphicon-chevron-left"></span>
94+
<span class="sr-only">Previous</span>
95+
</a>
96+
<a class="right carousel-control" href="team.html" data-slide="next">
97+
<span class="glyphicon glyphicon-chevron-right"></span>
98+
<span class="sr-only">Next</span>
99+
</a>
100+
101+
<!-- Bootstrap core JavaScript
102+
================================================== -->
103+
<!-- Placed at the end of the document so the pages load faster -->
104+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
105+
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
106+
<script src="../../dist/js/bootstrap.min.js"></script>
107+
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
108+
<script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
109+
</body>
110+
</html>
1.75 MB
Binary file not shown.

header.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
document.write('\
2+
\
3+
<title>BuildHer Hackathon</title>\
4+
<link rel="stylesheet" href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css'>\
5+
<link rel='stylesheet' href ='style.css' type='text/css'>\
6+
<!--Fonts-->\
7+
<link href='https://fonts.googleapis.com/css?family=Bungee+Inline|Lobster|Muli|Raleway|Encode+Sans+Semi+Expanded' rel="stylesheet">\
8+
<!-- jQuery library -->\
9+
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>\
10+
<!-- Latest compiled JavaScript -->\
11+
<script src='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js'></script>\
12+
\
13+
');

images/alaina.jpg

-45.3 KB
Binary file not shown.

images/alyssa.jpg

-40 KB
Binary file not shown.

images/ascii1.png

9.28 KB
Loading

images/ascii2.png

9.5 KB
Loading

images/ashu.jpg

-61.9 KB
Binary file not shown.

images/ashu2.jpg

-131 KB
Binary file not shown.

images/dayeon.png

-1.15 MB
Binary file not shown.

images/deniz.png

-1.74 MB
Binary file not shown.
File renamed without changes.

images/kinsey.png

-1.98 MB
Binary file not shown.

images/logo-transparent.png

313 KB
Loading

images/map1.png

-283 KB
Binary file not shown.

images/map2.png

-182 KB
Binary file not shown.

images/map3.png

-308 KB
Binary file not shown.

images/meg.png

-2.04 MB
Binary file not shown.

images/mlh-logo-color.png

-63.3 KB
Binary file not shown.

images/mlh-logo-white.png

-56.8 KB
Binary file not shown.

images/moon-wave.png

-684 KB
Binary file not shown.

images/nancy.jpg

-3.39 MB
Binary file not shown.

images/naomi.jpg

-197 KB
Binary file not shown.

images/nneoma.png

-2.03 MB
Binary file not shown.

images/olivia.png

-2.09 MB
Binary file not shown.

images/team/arianna.png

1.35 MB
Loading

images/team/dayeon.png

836 KB
Loading

images/team/diana.png

1.59 MB
Loading

images/team/gianna.png

1010 KB
Loading

images/team/kinsey.png

1.4 MB
Loading

images/team/leah.png

1.31 MB
Loading

images/team/mary.png

2.24 MB
Loading

images/team/nancy.jpg

3.22 MB
Loading

images/team/nneoma.jpg

472 KB
Loading

images/team/olivia.png

1.29 MB
Loading

images/team/rachana.png

916 KB
Loading

images/wave.png

-102 KB
Binary file not shown.

0 commit comments

Comments
 (0)