-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
608 lines (571 loc) · 29.4 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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Associated Students Resource Guide</title>
<link rel="shortcut icon" href="./assets/as-logo.png" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- <link href="https://fonts.googleapis.com/css2?family=Gravitas+One&display=swap" rel="stylesheet"> -->
<!-- Rubik font taken off Google fonts -->
<link href="https://fonts.googleapis.com/css2?family=Rubik&display=swap" rel="stylesheet">
</head>
</head>
<body>
<div class="d-flex container-fluid px-0">
<aside>
<div class="offcanvas offcanvas-start" data-bs-scroll="true" data-bs-backdrop="true" tabindex="-1" id="offcanvas" aria-labelledby="sidebar">
<div class="offcanvas-header">
<h5 class="offcanvas-title">Categories</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<button type="button" class="btn category basic-needs" onclick="filterCategory('basic-needs')">Basic Needs</button>
<button type="button" class="btn category housing" onclick="filterCategory('housing')">Housing</button>
<button type="button" class="btn category food" onclick="filterCategory('food')">Food and Nutrition</button>
<button type="button" class="btn category wellness text-nowrap" onclick="filterCategory('wellness')">Mental Health and Wellness</button>
<button type="button" class="btn category academics" onclick="filterCategory('academics')">Academics</button>
<button type="button" class="btn category financial" onclick="filterCategory('financial')">Financial Support</button>
<button type="button" class="btn category community" onclick="filterCategory('community')">Community Centers</button>
<button type="button" class="btn category legal" onclick="filterCategory('legal')">Legal Support</button>
<button type="button" class="btn category transport" onclick="filterCategory('transport')">Transportation</button>
<button type="button" class="btn category career" onclick="filterCategory('career')">Career Guidance</button>
<button type="button" class="btn category disabilities" onclick="filterCategory('disabilities')">Disabilities</button>
<button type="button" class="btn category additional" onclick="filterCategory('additional')">Additional Resources</button>
</div>
</div>
</aside>
<div class="main-column container-fluid px-0">
<header>
<div class="d-flex container-fluid sticky-top px-0 vw-75" id="heading">
<button type="button" class="btn" data-bs-toggle="offcanvas" data-bs-target="#offcanvas" aria-controls="sidebar">
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="100" fill="currentColor" class="bi bi-arrow-right" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z"/>
</svg>
</button>
<div class="title">
<h1><span><a href="./index.html"><img src="./assets/as-logo.png" alt="AS Logo" id="logo"></a></span>Resource Guide</h1>
</div>
</div>
</header>
<main>
<div class="d-flex flex-wrap container-fluid gradient p-0" id="main">
<!-- 211 San Diego Info -->
<div class="card">
<a href="https://211sandiego.org/" target="_blank"><img src="./assets/211-logo.png" alt="211 Logo" class="card-img-top"></a>
<div class="card-body">
<h5 class="card-title">
<a href="https://211sandiego.org/" target="_blank">211 San Diego</a>
</h5>
<p class="card-text">
A resource database and confidential phone service to connect
San Diego residents to resources that help with basic needs,
finances, and much more.
</p>
</div>
<!-- TODO - 1 Accordion -->
</div>
<!-- Mental Health Digital Toolkit Info -->
<div class="card">
<img src="./assets/digital-toolkit-logo.png" alt="Digital Toolkit Logo" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://themighty.com/2020/10/digital-resource-tools-toolkit-prioritize-bipoc-mental-health/#affirmations" target="_blank">
A Digital Toolkit for Prioritizing your Mental Health
</a>
</h5>
<p class="card-text">
Featured on The Mighty.com, an online community for people with
disabilities, chronic illness, and mental health challenges.
This extensive online guide features a wide variety of
activities and resources. Specifically, it features a list of
online resources and organizations created especially for
Latinx, Black, Asian, Arab, Indigenous, and LGBTQIA+ individuals.
</p>
</div>
</div>
<!-- AAPD Info -->
<div class="card">
<img src="./assets/aapd-logo.png" alt="AAPD Logo" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://www.aapd.com/summer-internship-program/" target="_blank">
American Association of People with Disabilities Summer Internship Program
</a>
</h5>
<p class="card-text"></p>
</div>
</div>
<!-- AIP Info -->
<div class="card">
<img src="./assets/aip-logo.png" alt="AIP Logo" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://aip.ucsd.edu/" target="_blank">Academic Internship Program</a>
</h5>
<p class="card-text">
the Academic Internship Program at UCSD helps students find internship and
research opportunities, as well as scholarship and
community service opportunities.
</p>
</div>
</div>
<!-- Affordable Grocery Store Map Info -->
<div class="card">
<img src="./assets/grocery-map.png" alt="Grocery Map" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://earth.google.com/web/@32.80922335,-117.17589155,80.40614941a,58295.00702778d,30y,0h,0t,0r/data=MikKJwolCiExM1dzbVZPMkpBVVRPSUx1NHhnQXY2N09XVGFFc0xCNHIgAToDCgEw" target="_blank">
Affordable Grocery Store Map
</a>
</h5>
<p class="card-text">
This map labels local grocery stores according to general item
affordability. Click on the link to get a better view of all
stores via Google Earth. Dollar signs and colors denote
different affordability levels, with green ($) being the cheapest
and red the most expensive ($$$).
</p>
</div>
<!-- TODO: GO TO LINK, EMBED MAP INTO HTML -->
</div>
<!-- Associated Students Info -->
<div class="card">
<img src="./assets/as-logo.png" alt="AS Logo" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://as.ucsd.edu/" target="_blank">Associated Students</a>
</h5>
<p class="card-text">
As the student governing body of UCSD, the AS council advocates
on behalf of UC San Diego students, overseeing several
commissions and programs at UCSD, such as Triton Food Pantry
and the Women's Commission. They also provide funding for
student-led events and research.
</p>
</div>
<!-- TODO: ACCORDION WITH CONTACT INFO, AFFILIATED RESOURCES -->
</div>
<!-- ASUCSD Local Housing Guide Info EDIT: REMOVE, PUT IN AS SECTION UNDER ACCORDION -->
<!-- <div class="card">
<img src="" alt="" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://basicneeds.ucsd.edu/_files/ASUCSD_Local-Housing-Guide.pdf">Associated Students Local Housing Guide</a>
</h5>
<p class="card-text">
This comprehensive guide includes a list of local housing
services and resources (including resources specifically
available for individuals with disabilities), information on
tenants' rights, off-campus housing tips, on-campus housing
information, and more.
</p>
</div>
</div> -->
<!-- Need to rewrite info and add ACI info to it -->
<div class="card">
<img src="./assets/asan-logo.png" alt="ASAN Logo" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="" target="_blank">Autistic Self-Advocacy Network (ASAN)</a>
</h5>
</div>
</div>
<!-- BEAM Info -->
<div class="card">
<img src="./assets/beam-logo.png" alt="BEAM Logo" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://www.beam.community/" target="_blank">Black Emotional and Mental Health Collective (BEAM)</a>
</h5>
<p class="card-text">
An online community and resource, featuring mental health
toolkits and activities, as well as guidance towards
other resources dedicated specifically to the mental health
needs of Black people. This community also features resources
for Black individuals seeking to promote mental health in their
own local communities.
</p>
</div>
</div>
<!-- Campus Community Centers Info -->
<div class="card">
<!-- Make suitable image? -->
<img src="" alt="" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://ccc.ucsd.edu/about-us/campus-community-centers.html" target="_blank">Campus Community Centers</a>
</h5>
<p class="card-text">
The Campus Community Centers are amazing places to make
friends, find resources, learn new things, and celebrate and
explore your identity. The Community Centers are not only
resource centers where you can find support; They also host
welcoming small-scale events and student gatherings on a daily
basis. They are great places to just hang out or study in a
comfortable and safe space.
</p>
<!-- TODO: ACCORDION WITH ALL RESOURCE CENTERS LINKS -->
</div>
</div>
<!-- Career Center Info -->
<div class="card">
<img src="" alt="" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://career.ucsd.edu/" target="_blank">Career Center</a>
</h5>
<p class="card-text">
The Career Center offers advising and assistance to help you
choose the right career, find a job or internship, create a
strong resume, make a good impression at job interviews, get
into grad school, and more. They offer walk-in advising,
advising by appointment, and workshops. Its website and
employees can also help you to find additional relevant
resources.
</p>
<!-- TODO: ACCORDION WITH ADDITIONAL INFORMATION -->
</div>
</div>
<!-- Child Care Resources Info -->
<div class="card">
<img src="" alt="" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://students.ucsd.edu/well-being/wellness-resources/student-parents/child-care.htm" target="_blank">
Child Care Resources
</a>
</h5>
<p class="card-text">This list of resources includes subsidized child-care options.</p>
</div>
</div>
<!-- CAPS Info -->
<div class="card">
<img src="" alt="" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://caps.ucsd.edu/" target="_blank">Counseling and Psychological Services (CAPS)</a>
</h5>
<p class="card-text">
CAPS offers individual, group, couples, and family
psychological counseling and crisis support. For more
frequent treatment off-campus, CAPS is also
proficient in referring off-campus specialist for your needs.
They also host weekly wellness workshops!
</p>
</div>
<!-- TODO: ACCORDION WITH APPOINTMENT INFO, another with weekly wellness workshop info -->
</div>
<!-- Cultural Student Organizations Info -->
<div class="card">
<img src="./assets/csi-logo.png" alt="CSI Logo" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://studentorg.ucsd.edu/Home/Index/9" target="_blank">Cultural Student Organizations</a>
</h5>
<p class="card-text">
UCSD is home to over thirty cultural student organizations,
which aim to celebrate diversity and culture, while creating
community. Attached is a link to a list of all cultural student
organizations registered for the current academic school year!
</p>
</div>
</div>
<!-- DCS of San Diego Info (Website Down Currently) -->
<div class="card">
<img src="" alt="" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="" target="_blank">Deaf Community Services (DCS) of San Diego, Behavioral Health Services</a>
</h5>
<p class="card-text">
<blockquote class="blockquote mb-0">
<p>
“Behavioral Health Services offer comprehensive outpatient
behavioral health services to Deaf, Deaf-Blind,
late-deafened, and hard of hearing adults, youth and
families in San Diego County. Such services are designed to
provide culturally and linguistically appropriate care and
ensure the highest quality of therapy services possible.”
</p>
<footer class="blockquote-footer"><cite title="Deaf Community Services">Deaf Community Services</cite></footer>
</blockquote>
</p>
</div>
</div>
<!-- DAPi Info -->
<div class="card">
<img src="./assets/dapi-logo.png" alt="DAPi Logo" class="card-img-top">
<div class="card-body">
<h5 class="title">
<a href="http://deltaalphapihonorsociety.org/" target="_blank">Delta Alpha Pi (DAPi)</a>
</h5>
<p class="card-text">
Delta Alpha Pi, also known as DAPi, is an international
academic honor society for students with disabilities. The
organization aims to celebrate the achievements of university
students with disabilities, and to advocate for the rights of
people with disabilities. While there are GPA and unit
requirements for official membership, all students are welcome
to participate in Delta Alpha Pi events and projects.
</p>
</div>
</div>
<!-- Disability Benefits 101: Start Planning Now -->
<div class="card">
<img src="" alt="" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://ca.db101.org/ca/situations/youthanddisability/planning/program.htm" target="_blank">
Disability Benefits 101: Start Planning Now
</a>
</h5>
<p class="card-text">
This comprehensive guide is intended to support young adults
with disabilities as they establish independence and manage
the many challenges that come with Disabled adulthood. The
guide breaks down life management planning into steps and
sections, and includes numerous resources for health care
planning, financial planning, utilizing government assistance,
and more.
</p>
</div>
</div>
<!-- Disability Rights California Info -->
<div class="card">
<img src="" alt="" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://www.disabilityrightsca.org/" target="_blank">Disability Rights California</a>
</h5>
<p class="card-text"></p>
</div>
</div>
<!-- DREAM Info -->
<div class="card">
<img src="" alt="" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://www.dreamcollegedisability.org/" target="_blank">
Disability Rights, Education, Activism, and Mentoring (DREAM)
</a>
</h5>
<blockquote class="blockquote mb-0">
<p>
“A national organization for and by college students with
disabilities [...] We strongly advocate for disability
culture, community, and pride, and hope to serve as an
online virtual disability cultural center for students who
want to connect with other students.”
</p>
<footer class="blockquote-footer"><cite title="DREAM">DREAM</cite></footer>
</blockquote>
</div>
</div>
<!-- Financial Aid and Scholarships Office Info -->
<div class="card">
<img src="" alt="" class="card-img-top">
<div class="card-body">
<h5 class="card-title"><a href="https://fas.ucsd.edu/index.html" target="_blank">
Financial Aid and Scholarships Office
</a>
</h5>
<p class="card-text">
The Financial Aid and Scholarships Office helps students find and
apply for grants, loans, scholarships, and work study. Individual
counseling by appointment is available. Visit the Office's
website for online resources such as scholarships and financial
literacy guides.
</p>
</div>
<!-- TODO: ACCORDION INFO WITH BUDGET ADD-ON APPEALS, EMERGENCY LOANS CARDS -->
</div>
<!-- Food Allergy Accomodations Info -->
<div class="card">
<img src="" alt="" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://hdhdining.ucsd.edu/nutrition-services/dietitian-request.html" target="_blank">
Food Allergy and Dietary Accommodations
</a>
</h5>
<p class="card-text">
Students who have food allergies and/or intolerances are
encouraged to submit a Dietitian Consultation Request to food
allergies and other dietary needs.
</p>
</div>
</div>
<!-- GPSA Info -->
<div class="card">
<img src="" alt="" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://gpsa.ucsd.edu/" target="_blank">
Graduate and Professional Student Association
</a>
</h5>
<p class="card-text">
The Graduate Student Association (GSA) exists to advocate for
the rights and interests of our diverse community, to provide
for the enjoyment of social, cultural, and service-oriented
events, and for the betterment of academic and non-academic
life of all graduate and professional students at UC San Diego.
</p>
</div>
<!-- TODO: ACCORDION WITH CONTACT INFO AND RESOURCES SITE -->
</div>
<!-- JAN Info -->
<div class="card">
<img src="" alt="" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://askjan.org/" target="_blank">
Job Accomodation Network (JAN)
</a>
</h5>
<p class="card-text">
The Job Accommodation Network (JAN) provides extensive online
resources and free one-on-one guidance for anyone (employees
or job seekers) seeking to learn more about their accommodation
rights as persons with disabilities.
</p>
</div>
</div>
<!-- List of Black Therapists Info -->
<div class="card">
<img src="" alt="" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://sites.google.com/ucsd.edu/magnifyingsandiego/home" target="_blank">
Magnifying San Diego
</a>
</h5>
<p class="card-text">
Created by student Jaida Day, the Magnifying San Diego website
highlights Black-owned businesses throughout San Diego, as well
as a variety of resources not included in this guide. Take a
look!
</p>
</div>
<!-- TODO: Add list of black therapists source -->
</div>
<!-- PAS Info -->
<div class="card">
<img src="" alt="" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://pueblo.gpo.gov/CAARNG/ODEP/PDF/ODEP051.pdf" target="_blank">
Making the Move to Managing Your Own Personal Assistance Services (PAS)
</a>
</h5>
<p class="card-text">
This amazing resource is intended to help young adults with
disabilities to determine our needs in everyday life, what
tasks are reasonable for us to do, what resources we want to
use, and what kind of assistance we need. This document is a
guided, step-by-step process to make Personal Assistance
Services (PAS), a little-known resource, easier to navigate and
access.
</p>
</div>
</div>
<!-- Mindpath College Health Info -->
<div class="card">
<img src="" alt="" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://acaciacw.com/roots/" target="_blank">
Mindpath College Health
</a>
</h5>
<p class="card-text">
Mindpath College Health strives to provide mental health access to all
college and university students, regardless of financial
circumstances. They seek to challenge our current healthcare
system, build more equitable access, and promote individual
growth. Students who need financial assistance can apply for
a grant as funds are available to cover
co-payments, deductibles, or other costs associated with
receiving mental health support.
</p>
</div>
</div>
<div class="card">
Minority Biomedical Research Support Initiative for Maximizing Student Development (IMSD) Program
</div>
<div class="card">
Minority Mental Health Toolkits
</div>
<div class="card">
Nutrition Counseling
</div>
<div class="card">Office for Equity, Diversity, and Inclusion</div>
<div class="card">Office for Prevention of Harassment and Discrimination (OPHD)</div>
<div class="card">Office for Students with Disabilities (OSD)</div>
<div class="card">Office of Academic Support and Instructional Services (OASIS)</div>
<div class="card">Office of the Ombuds</div>
<div class="card">PATHways to STEM through Enhanced Access and Mentorship (PATHS) Program</div>
<div class="card">Peer Mentor Programs</div>
<!-- Public Transportation (Triton U-Pass) Info -->
<div class="card">
<img src="" alt="" class="card-img-top">
<div class="card-body">
<h5 class="card-title">
<a href="https://transportation.ucsd.edu/commute/transit/u-pass.html" target="_blank">
Public Transportation (Triton U-Pass)
</a>
</h5>
<p class="card-text">
UCSD students are eligible for a Triton U-Pass during the
academic year for unlimited use of select San Diego
transportation. Select modes of transit include San Diego’s
Metropolitan Transit System (MTS) and North County Transit
District (NCTD). Click on the link for directions on how to set
up your U-Pass on the Pronto app, and for summer offering costs
of the U-Pass!
</p>
</div>
</div>
<div class="card">Rapid Response Hotline</div>
<div class="card">Resources for Black Healing</div>
<div class="card">Ridesharing, Carpooling and Car-Sharing</div>
<div class="card">Roadside Assistance</div>
<div class="card">Safety Escorts and Triton Rides</div>
<div class="card">SDSU and USD Psychology Clinics</div>
<div class="card">Service Animal Resources</div>
<div class="card">Care at the Sexual Assault Resource Center (SARC)</div>
<div class="card">SPACES</div>
<div class="card">Student Affirmative Action Committee (SAAC)</div>
<div class="card">Student Health Services</div>
<div class="card">Student Legal Services (SLS)</div>
<div class="card">Student Workers Union (UAW #2865)</div>
<div class="card">Summer Training Academy for Research Success (STARS) Program</div>
<div class="card">Teaching and Learning Commons</div>
<div class="card">The Hub</div>
<div class="card">The Zone</div>
<div class="card">Triton Food Pantry</div>
<div class="card">Triton Mobility Services</div>
<div class="card">Triton Transfers</div>
<div class="card">Triton Transit Shuttles</div>
<div class="card">Tritons Connect</div>
<div class="card">UC Leadership Excellence through Advanced Degrees (LEADS) Program</div>
<div class="card">Undergraduate Academic Advising</div>
<!-- TODO: Put TRELS, FMP, McNair and even more under this card -->
<div class="card">Undergraduate Research Hub</div>
<div class="card">Undocumented Student Services Center</div>
</div>
</main>
<footer>
</footer>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+" crossorigin="anonymous"></script>
</body>
</html>