-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathraas_page.html
150 lines (123 loc) · 3.48 KB
/
raas_page.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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html>
<head>
<title> We are Raasformers! </title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,900' rel='stylesheet' type='text/css'>
<!-- JQuery Hovering Code -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"> </script>
<script>
$(document).ready(function(){
$(".secret").hover(
function(){
$("#mai").css("display", "block");
},
function(){
$("#mai").css("display", "none");
});
});
</script>
</head>
<body>
<div class="container">
<div class="intro">
<header>
<h3>Chicago <b>Raas</b>formers.</h3>
</header>
<footer>
<a href="#one" class="button style2 down"> More</a>
</footer>
</div>
<div class="about">
<h2 id="gah">Chicago Raas</h2> is a student run dance organization at the University of Chicago. Raas is an energetic, high-intensity Indian dance style based on a Gujarati folk dance. We compete in various Raas and Indian Dance competitions and we dance in a number of festivals and performances throughout the year.
</div>
<br><br>
<div class="the_team">
<h2> The Team </h2>
<hr><br><br>
<ul class="team-members">
<li class="foo">
<img src="images/alanna.png"/>
<img src="images/alanna_switch.png"/>
<p> Alanna </p>
</li>
<li class="foo">
<img src="images/sarah.png"/>
<img src="images/sarah_switch.png"/>
<p> Sarah </p>
</li>
<li class="foo">
<img src="images/sayri.png"/>
<img src="images/sayri_switch.png"/>
<p> Sayri </p>
</li>
<li class="foo">
<img src="images/shashank.png"/>
<img src="images/shashank_switch.png"/>
<p> Shashank </p>
</li>
<li class="foo">
<img src="images/spiro.png"/>
<img src="images/spiro_switch.png"/>
<p> Spiro </p>
</li>
<li class="foo">
<img src="images/freddy.png"/>
<img src="images/freddy_switch.png"/>
<p> Freddy </p>
</li>
<li class="foo">
<img src="images/meghana.png"/>
<img src="images/meghana_switch.png"/>
<p> Meghana </p>
</li>
</ul>
<ul class="team-members">
<li class="foo">
<img src="images/namrata.png"/>
<img src="images/namrata_switch.png"/>
<p> Namrata </p>
</li>
<li class="foo">
<img src="images/davina.png"/>
<img src="images/davina_switch.png"/>
<p> Davina </p>
</li>
<li class="foo">
<img class = "mai1" src="images/mai.png"/>
<img class = "mai2" src="images/mai_switch.png"/>
<p class="secret"> Mai </p>
</li>
<li class="foo">
<img src="images/hanna.png"/>
<img src="images/hanna_switch.png"/>
<p> Hanna </p>
</li>
<li class="foo">
<img src="images/vaidehi.png"/>
<img src="images/vaidehi_switch.png"/>
<p> Vaidehi </p>
</li>
<li class="foo">
<img src="images/kaesha.png"/>
<img src="images/kaesha_switch.png"/>
<p> Kaesha </p>
</li>
<li class="foo">
<img src="images/christina.png"/>
<img src="images/christina_switch.png"/>
<p> Christina </p>
</li>
<li class="foo">
<img src="images/preethi.png"/>
<img src="images/preethi_switch.png"/>
<p> Preethi </p>
</li>
</ul>
</div>
<div id="mai">
thsi is some text
</div>
</div>
</body>
</html>