-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdonate.html
executable file
·110 lines (110 loc) · 4.42 KB
/
donate.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
<html>
<head>
<title>Donate | CSUA</title>
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,700,600" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" type="text/css" href="assets/css/common.css"/>
<script src="assets/js/jquery-1.9.1.js"></script>
<script src="assets/js/script.js"></script>
</head>
<body>
<div id="navbar">
<div id="navbarcontainer">
<div id="logo">
<a href="index.html">
<img src="assets/images/header.png">
</a>
</div>
<div class="navitem">
<a href="donate.html">
<div class="navlink">Donate</div>
</a>
</div>
<div class="navitem">
<a href="join.html">
<div class="navlink">Join</div>
</a>
</div>
<div class="navitem">
<a href="industry.html">
<div class="navlink">Industry</div>
</a>
</div>
<div class="navitem">
<a href="events.html">
<div class="navlink">Events</div>
</a>
<div class="dropdown">
<a href="events/fall2013.html">
<div class="dropdownitem">Fall 2013</div>
</a>
<a href="events/spring2014.html">
<div class="dropdownitem">Spring 2014</div>
</a>
</div>
</div>
<div class="navitem">
<a href="index.html">
<div class="navlink">About</div>
</a>
<div class="dropdown">
<a href="politburo.html">
<div class="dropdownitem">Politburo</div>
</a>
<a href="officers.html">
<div class="dropdownitem">Officers</div>
</a>
<a href="constitution.html">
<div class="dropdownitem">Constitution</div>
</a>
</div>
</div>
</div>
</div>
<div id="content">
<div class="column columnleft">
<div class="block">
<div class="header">Cause</div>
<div class="text">
The CSUA is dedicated to improving the experience of computer science
undergraduates at Berkeley. We host hackathons, where students hack on
projects for 18-hour long coding periods, as well as other events, bringing
industry speakers to campus. We also provide free UNIX logins and server
hosting for students. Our study and social lounges are places for students
to relax and study.</br>
Donate with the full confidence that your donation will be used to
support a new generation of Berkeley engineers.
</div>
</div>
<div class="blockseparation"></div>
<div id="donatepicturetwo">
<img src="assets/images/donate2.jpg">
</div>
</div>
<div class="responsivehidden blockseparation"></div>
<div class="column columnright">
<div id="donatepictureone">
<img src="assets/images/donate1.jpg">
</div>
<div class="blockseparation"></div>
<div class="block">
<div class="header">Information</div>
<div class="text">
If you would like to contribute to the CSUA, please email the Politburo
at [email protected]. Thank you for your generosity! <br>
If you are a company representative and would like to sponsor a CSUA
event or donate for a particular purpose, please contact our industrial
relations VP at [email protected].
</div>
</div>
</div>
<div class="clear"></div>
<div id="footer">
<div class="text">
Copyright © 2014 CSUA. All rights reserved.
Design by <a href="http://www.sarahjikim.com/">
<span class="blue">Sarah Kim</span></a>.
</div>
</div>
</div>
</body>
</html>