-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
123 lines (110 loc) · 5.65 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Brown CSA</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="https://fonts.googleapis.com/css2?family=Raleway&display=swap" rel="stylesheet">
<!-- <link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css"> -->
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/utils.css">
<link href="hover.css" rel="stylesheet" media="all">
<!-- JS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script type = "text/javascript" src="navigation.js"></script>
<script src="slideshow.js" defer></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Font Awesome
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script src="https://kit.fontawesome.com/274e33ba79.js" crossorigin="anonymous"></script>
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/csaLogoBW_icon.svg">
</head>
<body id="home">
<div class="boundingcontainer">
<div class="header">
<div class="homeSection" onmouseover="hover(document.getElementById('homeIcon'));"
onmouseout="unhoverHomePage(document.getElementById('homeIcon'));" onclick="location.href = 'index.html';">
Brown CSA
<img id="homeIcon" src="images/csaLogoWhite.png">
</div>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
<div class="line4"></div>
</div>
</div>
<!-- Moved dropdown outside of header and put it in dropdownContainer -->
<div class="dropdownContainer">
<ul class="nav-links">
<li>
<a href = "about.html" class = "hvr-fade"> About </a>
</li>
<li>
<a href = "events.html" class = "hvr-fade"> Events </a>
</li>
<li>
<a href = "membership.html" class = "hvr-fade"> Membership </a>
</li>
<!-- <li>
<a href = "contact.html" class = "hvr-fade"> Contact Us </a>
</li> -->
</ul>
</div>
<div class="homePageContainer">
<div class="slideshowBG">
<img src="images/slide2.jpg" class="slideshow-img">
<img src="images/slide3.jpg" class="slideshow-img">
<img src="images/slide4.jpg" class="slideshow-img">
<img src="images/slide5.jpg" class="slideshow-img">
<img src="images/slide6.jpg" class="slideshow-img">
<img src="images/slide7.jpg" class="slideshow-img">
<img src="images/slide8.jpg" class="slideshow-img">
<img src="images/slide9.jpg" class="slideshow-img">
<img src="images/slide10.jpg" class="slideshow-img">
<img src="images/slide11.jpg" class="slideshow-img">
</div>
<div class="homePageText">
<img src="images/csaLogo_LandingPage.svg">
<h1>Brown CSA</h1>
</div>
</div>
<div class="welcomeStatement">
<h5>Welcome to Brown University’s Chinese Students Association!</h5>
<p>
We are one of the largest student organizations on campus with over 950 members in all class years. Brown CSA seeks to celebrate and embrace Chinese culture at Brown, embodying both international and domestic strata of our diverse community. Through annual Chinese holiday celebrations, general body assemblies, and social events, CSA hopes to foster forums for students to experience and discuss Chinese culture. All students, inclusive of any culture and ethnicity, are welcome to join us in embracing the Chinese identity.
</p>
<p>
Eligibility for CSA is open to all full-time undergraduate members of the Brown community. To learn more about how to get involved, check out the “Membership” tab in the navigation bar!
</p>
<p>
If you would like to contact us for any reason, we welcome you to email us at thecsa@brown.edu. We’re so glad to have you here and we can’t wait to meet all of you! At Brown CSA, we strongly believe in the power of connection and it is our goal to make sure that our members know their identity and presence matters.
</p>
<p>
Best,
</p>
<p>
Presidents Sudy Qin and Evan Ren
<br>
Brown Chinese Students Association
</p>
</div>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</div>
</body>
</html>