-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrules.html
More file actions
121 lines (108 loc) · 3.79 KB
/
rules.html
File metadata and controls
121 lines (108 loc) · 3.79 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>hackBCA</title>
<!-- Bootstrap core CSS -->
<link href="bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<!-- <link href="sticky-footer.css" rel="stylesheet"> -->
<link rel="stylesheet" type="text/css" href="custom.css" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-45366451-1', 'hackbca.com');
ga('send', 'pageview');
</script>
</head>
<body>
<!-- Wrap all page content here -->
<div id="wrap">
<div class="hackBCA-header">
<a href="index.html"><h1>hack<strong>BCA</strong></h1></a>
</div>
<div class="info-pane">
<div class="container">
<div class="page-title">Rules</div>
</div>
</div>
<div class="judges-pane">
<div class="container">
<h3>Participation</h3>
<p class="description">
The participants must be enrolled in high school at the time of the event.
</p>
<hr>
<h3>Teams</h3>
<p class="description">
Teams can contain no more than 7 students.
</p>
<hr>
<h3>Submission</h3>
<p class="description">
Each team must submit one submission by 11am on Sunday. If a team does not submit a hack by 11am, they will not be able to demo or qualify for prizes.
</p>
<hr>
<h3>Judging</h3>
<p class="description">
Judging will be based on creativity, usefulness, polish and technical difficulty.
</p>
<hr>
<h3>Behavior</h3>
<p class="description">
Students must stay in the gym and auditorium during the entire event.
</p>
</div>
</div>
<div class="nav-bar-pane">
<div class="container">
<div class="row">
<!-- <div class="col-md-3"> </div> -->
<div class="col-md-2">
<a href="apis.html">
<button type="button" class="btn btn-primary nav-bar-btn-samecase">APIs</button>
</a>
</div>
<div class="col-md-2">
<a href="schedule.html">
<button type="button" class="btn btn-primary nav-bar-btn">Schedule</button>
</a>
</div>
<div class="col-md-2">
<a href="prizes.html">
<button type="button" class="btn btn-primary nav-bar-btn">Prizes</button>
</a>
</div>
<div class="col-md-2">
<button type="button" class="active btn btn-primary nav-bar-btn">Rules</button>
</div>
<div class="col-md-2">
<a href="http://blog.hackbca.com">
<button type="button" class="btn btn-primary nav-bar-btn">Blog</button>
</a>
</div>
<div class="col-md-2">
<a href="about.html">
<button type="button" class="btn btn-primary nav-bar-btn">About</button>
</a>
</div>
<!-- <div class="col-md-3"> </div> -->
</div>
</div>
</div>
<div class="final-register-btn-pane">
<button type="button" class="btn btn-lg btn-info">Register</button>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script type="text/javascript" src="pixastic.custom.js" />
</body>
</html>