-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (75 loc) · 2.85 KB
/
index.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
<html>
<head>
<link href="styles.css" rel="stylesheet" type="text/css">
<!--jQuery-->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
<script type="text/javascript" src="custom.js"></script>
<!--google web fonts-->
<link href='http://fonts.googleapis.com/css?family=Cabin:400,700|Lobster+Two:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="row">
<!--myFrame-->
<div class="span9">
<iframe id="myFrame" onload="reloadSideBar()" src="landing.html"/></iframe>
</div>
<!--HowItWorks Div-->
<div class="hiddenSpread" id="hiddenHowItWorks">
<div class="hiddenSpreadBG">
</div>
<div class="hiddenSpreadContents">
<b>How it works</b>
<img src="images/icons/Cross_shadow_hover2.png" onmouseover="this.src='images/icons/Cross_shadow.png'" onmouseout="this.src='images/icons/Cross_shadow_hover2.png'" class="icon iconClose"/>
<hr />
<br/>
This is a hidden div.
</div>
</div>
<!--About Div-->
<div class="hiddenSpread" id="hiddenAbout">
<div class="hiddenSpreadBG">
</div>
<div class="hiddenSpreadContents">
<b> About</b>
<img src="images/icons/Cross_shadow_hover2.png" onmouseover="this.src='images/icons/Cross_shadow.png'" onmouseout="this.src='images/icons/Cross_shadow_hover2.png'" class="icon iconClose"/>
<hr />
Hello! <br /><br />
Thank you for sharing your time and space with those less fortunate!<br/>
It is an honor to partner with you in making the world a better place,<br /> <i>one pixel at a time.</i> <br /><br />
<span class="faint"> - - - </span>
<table class="aboutPics">
<tr>
<td><img class="pic" src="images/about_pics/kevin.jpg"/></td>
<td><img class="pic" src="images/about_pics/ryan.jpg"/></td>
<td><img class="pic" src="images/about_pics/johnny.jpg"/></td>
</tr>
<tr>
<td>Kevin Shen</td>
<td>Ryan Cleary</td>
<td>Johnny Rusnak</td>
</tr>
</table>
<span class="faint"> - - - </span>
<br />
We are three college students at the <em>University of Southern California</em> <br />who like to build stuff, and have always wanted to use our skills <br />for the benefit of others.
<br />
<br />
<div class="contactUs">
<span class="opacity: 0.6">Contact us:</span>
<b>[email protected]</b>
</div>
<br />
<div class="quote">
"Never doubt that a small group of thoughtful, committed people can change the world. Indeed, it is the only thing that ever has." <br />
<span class="right">- Margaret Mead</span>
</div>
</div>
</div>
<!--SideBar-->
<div class="span3">
<iframe id="iSideBar" src="SideBar.php"></iframe>
</div>
</div>
</body>
</html>