-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
202 lines (180 loc) · 9.92 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
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Cornell Computer Reuse Association</title>
<link rel="stylesheet" type="text/css" href="styles/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="styles/site.css" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body>
<div class="container-fluid">
<header>
<div class="navbar navbar-expand-md">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="container-fluid text-center">
<div class="row justify-content-center">
<div class="col-md-2 align-self-center">
<a href="index.html">
<img class="" src="images/ccralogo8.png" width="150" height="69"
alt="Cornell Computer Reuse Association Logo">
</a>
</div>
<div class="col-md align-self-center">
<a href="index.html">
<h3>
Cornell Computer Reuse Association
</h3>
</a>
</div>
</div>
<nav class="navbar navbar-expand-md">
<div class="container-fluid">
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav m-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Donate/Request Computers
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="donate-computers.html">Donate Computers</a>
</li>
<li><a class="dropdown-item" href="request-computers.html">Request Computers</a>
</li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="give-money.html">Give Money</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="press.html">Media & Press</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact/Join Us</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
</header>
<main>
<h4>About Us</h4>
<div class="row">
<div class="col-md">
<p>The Cornell Computer Reuse Association (CCRA) is a Cornell student group whose mission is to
donate computers and other computer-related technology to humanitarian organizations in the
developing world, the local Ithaca community, and elsewhere.</p>
<p>We collect and refurbish computers, and then donate them to community centers,
orphanages, schools, and other organizations.
</p>
</div>
<div class="col-md">
<div id="carouselExampleIndicators" class="carousel slide" data-bs-ride="true">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0"
class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2"
aria-label="Slide 3"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="3"
aria-label="Slide 4"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="4"
aria-label="Slide 5"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="5"
aria-label="Slide 6"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/home/1.jpg" class="d-block w-100" alt="">
</div>
<div class="carousel-item">
<img src="images/home/2.jpg" class="d-block w-100" alt="">
</div>
<div class="carousel-item">
<img src="images/home/3.jpg" class="d-block w-100" alt="">
</div>
<div class="carousel-item">
<img src="images/home/4.jpg" class="d-block w-100" alt="">
</div>
<div class="carousel-item">
<img src="images/home/5.jpg" class="d-block w-100" alt="">
</div>
<div class="carousel-item">
<img src="images/home/6.jpg" class="d-block w-100" alt="">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleIndicators"
data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleIndicators"
data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</div>
<p class="bold-center pt-3">Since 2006, we have donated over 5,000 computers at no cost to outstanding
organizations all over the world.</p>
<!-- <div class="row g-0 text-center">
<div class="col-md">
<a class="btn buttonpic btn-sm" href="#" role="button">Donate Computers</a>
</div>
<div class="col-md">
<a class="btn buttonpic btn-sm" href="#" role="button">Request Computers</a>
</div>
<div class="col-md">
<a class="btn buttonpic btn-sm" href="#" role="button">Give Money</a>
</div>
<div class="col-md">
<a class="btn buttonpic btn-sm" href="#" role="button">Contact/Join Us</a>
</div>
</div> -->
</main>
<footer>
<div class="container-fluid text-center">
<div class="row justify-content-center">
<div class="col-md">
<p class="float-md-start">© Cornell Computer Reuse Association 2024</p>
</div>
<div class="col-md">
<a class="float-md-end"
href="https://www.facebook.com/Cornell-Computer-Reuse-Association-418484831551199/"
target="_blank">
<img class="" src="images/facebook-icon.png" width="30" height="30" alt="facebook logo">
</a>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md">
<p class="float-md-start"><a href="about-this-website.html">About this Website</a></p>
</div>
<div class="col-md">
</div>
</div>
<p>This organization is a registered student organization of Cornell University.</p>
</div>
</footer>
</div>
<!-- <script src="scripts/jquery-3.6.2.min.js"></script> -->
<script src="scripts/bootstrap.bundle.min.js"></script>
</body>
</html>