-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.php
64 lines (64 loc) · 1.94 KB
/
index.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
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
<?php include "header.php"; ?>
<div id="big">
<div class="wrapper">
<div id="left">
<p id="fitText">
Getting more done after 2<span class="smallCaps">am</span> than most people do all day.
</p>
</div>
</div>
</div>
<div id="content">
<div id="split">
<div id="about">
<h3>
<a href="about.php" class="green">About CSH</a>
</h3>
<p>
Since 1976, Computer Science House has provided a revolutionary living and learning environment for its members. With unique facilities, emphasis on hands-on learning, and a strong social atmosphere, CSH helps its members grow as professionals and more.
</p>
</div>
<div id="projects">
<h3>
<a href="projects.php" class="green">Things we've done</a>
</h3>
<img src="images/projects/arcade.jpg" alt="CSH Arcade Cabinet" />
<img src="images/projects/drink.jpg" alt="Drink" />
<img src="images/projects/infosys.jpg" alt="Infosys" />
<img src="images/projects/heroine.jpg" alt="Heroine" />
<p>
Personal projects are a big part of CSH culture. Some of our biggest include CSH Arcade, Drink, InfoSys, and Heroine.
</p>
</div>
</div>
<div id="sponsors">
<div id="hr"></div>
<h3>
<a href="sponsors.php" class="green">Sponsors</a>
</h3>
<div id="row">
<noscript>
<a href="http://oracle.com">
<img src="images/sponsorLogos/oracle.png" alt="Oracle">
</a>
<a href="http://ti.com">
<img src="images/sponsorLogos/ti.png" alt="Texas Instruments">
</a>
<a href="http://jnj.com">
<img src="images/sponsorLogos/johnsonjohnson.png" alt="Johnson & Johnson">
</a>
<a href="http://symantec.com">
<img src="images/sponsorLogos/symantec.png" alt="Symantec">
</a>
<a href="http://google.com">
<img src="images/sponsorLogos/google.png" alt="Google">
</a>
</noscript>
</div>
</div>
</div>
<script>
//Fit slogan to container
$('#fitText').fitText(1.25, {minFontSize:24});
</script>
<?php include "footer.php"; ?>