forked from fremontboy1/DSClubWebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatafests.php
32 lines (31 loc) · 1008 Bytes
/
datafests.php
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
<?php
include 'header.php';
?>
<div class="row content">
<div class="col-sm-2 sidenav">
<p><a href="#">Link</a></p>
<p><a href="#">Link</a></p>
<p><a href="#">Link</a></p>
</div>
<div class="col-sm-8 text-left">
<h1>Data Fests</h1>
<img src="imgs/datafestimg.jpeg" style="float:left;padding-right:15px;" />
<p>
The club hosts two different kinds of data fests: micro data fests and data fests. The first
ones are held more often and are basically just a shorter version of a data fest. Typically,
45 minutes are given to teams of 4 (we make sure each team has a variety of skill levels in it)
to solve a real-world like problem. Each member of the team that wins gets a prize!
</p>
</div>
<div class="col-sm-2 sidenav">
<div class="well">
<p>ADS</p>
</div>
<div class="well">
<p>ADS</p>
</div>
</div>
</div>
<?php
include 'footer.php';
?>