-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1053 lines (936 loc) · 91.5 KB
/
Copy pathindex.html
File metadata and controls
1053 lines (936 loc) · 91.5 KB
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
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Accessible FAQ of UC Davis student resources covering academic support, health and wellness, careers, and campus community.">
<title>Student Resources FAQ — UC Davis</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<a class="skip-link" href="#main">Skip to main content</a>
<svg aria-hidden="true" focusable="false" class="svg-sprite" xmlns="http://www.w3.org/2000/svg">
<defs>
<symbol id="icon-shield" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2 4 5v6c0 5 3.5 9.5 8 11 4.5-1.5 8-6 8-11V5l-8-3Z"/><path d="M12 8v4"/><circle cx="12" cy="16" r="0.5" fill="currentColor" stroke="none"/></symbol>
<symbol id="icon-monitor" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="4" width="20" height="14" rx="2"/><path d="M8 21h8"/><path d="M12 18v3"/></symbol>
<symbol id="icon-pencil" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15 3 6 6-12 12H3v-6Z"/><path d="m12 6 6 6"/></symbol>
<symbol id="icon-scale" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v18"/><path d="M5 7h14"/><path d="m5 7-3 6h6Z"/><path d="m19 7-3 6h6Z"/><path d="M7 21h10"/></symbol>
<symbol id="icon-briefcase" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="7" width="18" height="13" rx="2"/><path d="M8 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"/><path d="M3 13h18"/></symbol>
<symbol id="icon-graduation-cap" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 10 12 5l10 5-10 5Z"/><path d="M6 12v4c0 1.5 3 3 6 3s6-1.5 6-3v-4"/><path d="M22 10v5"/></symbol>
<symbol id="icon-dollar" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v20"/><path d="M17 6H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"/></symbol>
<symbol id="icon-globe" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><path d="M2 12h20"/><path d="M12 2c3 3 4.5 6 4.5 10S15 19 12 22"/><path d="M12 2c-3 3-4.5 6-4.5 10S9 19 12 22"/></symbol>
<symbol id="icon-accessibility" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="3.5" r="1.5"/><path d="M5 8.5h14"/><path d="M12 8.5V14"/><path d="m9 21 3-7 3 7"/></symbol>
<symbol id="icon-id-card" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="5" width="20" height="14" rx="2"/><circle cx="8" cy="12" r="2.5"/><path d="M14 10h5"/><path d="M14 14h5"/></symbol>
<symbol id="icon-users" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="9" cy="8" r="3"/><path d="M3 20c0-3.5 3-6 6-6s6 2.5 6 6"/><circle cx="17" cy="9" r="2.5"/><path d="M15 14.5c3 0 6 2 6 5.5"/></symbol>
<symbol id="icon-clipboard" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="5" y="4" width="14" height="18" rx="2"/><rect x="9" y="2" width="6" height="4" rx="1"/><path d="M9 12h6"/><path d="M9 16h6"/></symbol>
<symbol id="icon-first-aid" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="5" width="18" height="16" rx="2"/><path d="M12 10v6"/><path d="M9 13h6"/><path d="M8 5V3h8v2"/></symbol>
<symbol id="icon-heart-pulse" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 12h3l2-4 3 8 2-5h2"/><path d="M15 11c0-3 2.5-5 4.5-4s2.5 4 .5 6l-5 5-2.5-2.5"/></symbol>
<symbol id="icon-pill" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.5 2.5a5 5 0 0 1 7.07 7.07l-8.5 8.5a5 5 0 0 1-7.07-7.07Z"/><path d="m7 7 10 10"/></symbol>
<symbol id="icon-user-plus" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="10" cy="8" r="4"/><path d="M2 21c0-4 4-7 8-7s8 3 8 7"/><path d="M20 3v6"/><path d="M17 6h6"/></symbol>
<symbol id="icon-shopping-bag" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 7h14l-1 14H6Z"/><path d="M9 7V5a3 3 0 0 1 6 0v2"/></symbol>
<symbol id="icon-apple" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 7c-1.5-3-5-3-6.5-.5-1.5 2.5 0 7 2 9s3 2 4.5 1c1.5 1 2.5 1 4.5-1s3.5-6.5 2-9C17 4 13.5 4 12 7Z"/><path d="M12 7V4"/><path d="M12 4c1-2 3-2 3-2"/></symbol>
<symbol id="icon-dumbbell" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 5v14"/><path d="M3 8v8"/><path d="M18 5v14"/><path d="M21 8v8"/><path d="M6 12h12"/></symbol>
<symbol id="icon-baby" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="9"/><circle cx="9" cy="10" r="0.6" fill="currentColor" stroke="none"/><circle cx="15" cy="10" r="0.6" fill="currentColor" stroke="none"/><path d="M9 15c1 1 2 1.5 3 1.5s2-.5 3-1.5"/></symbol>
<symbol id="icon-home" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m3 11 9-8 9 8v10a2 2 0 0 1-2 2h-4v-7h-6v7H5a2 2 0 0 1-2-2Z"/></symbol>
<symbol id="icon-helping-hand" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 13v7h4v-9"/><path d="M6 13h7c1 0 2 .9 2 2s-1 2-2 2h-3"/><path d="M10 11V5a2 2 0 0 1 4 0v4"/><path d="M14 9V6a2 2 0 0 1 4 0v6c0 4-2 6-5 6"/></symbol>
<symbol id="icon-compass" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><path d="m8 16 2-6 6-2-2 6Z"/></symbol>
<symbol id="icon-search" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="10.5" cy="10.5" r="6.5"/><path d="m20 20-5-5"/></symbol>
<symbol id="icon-envelope" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="5" width="20" height="14" rx="2"/><path d="m2 7 10 7 10-7"/></symbol>
<symbol id="icon-file-text" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8Z"/><path d="M14 2v6h6"/><path d="M8 13h8"/><path d="M8 17h5"/></symbol>
<symbol id="icon-message" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2Z"/><circle cx="8" cy="11" r="0.6" fill="currentColor" stroke="none"/><circle cx="12" cy="11" r="0.6" fill="currentColor" stroke="none"/><circle cx="16" cy="11" r="0.6" fill="currentColor" stroke="none"/></symbol>
<symbol id="icon-bus" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="14" rx="2"/><path d="M3 12h18"/><path d="M6 8h12"/><circle cx="7" cy="20" r="1.5"/><circle cx="17" cy="20" r="1.5"/></symbol>
<symbol id="icon-utensils" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 3v7a2 2 0 0 0 2 2v10"/><path d="M10 3v7"/><path d="M8 3v7"/><path d="M16 3c-2 0-3 2-3 5s1 4 3 4v10"/></symbol>
<symbol id="icon-heart" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 1 0-7.78 7.78L12 21.23l8.84-8.84a5.5 5.5 0 0 0 0-7.78Z"/></symbol>
<symbol id="icon-map-pin" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2a7 7 0 0 0-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 0 0-7-7Z"/><circle cx="12" cy="9" r="2.5"/></symbol>
<symbol id="icon-bar-chart" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 20V10"/><path d="M10 20V4"/><path d="M16 20v-8"/><path d="M22 20v-6"/><path d="M2 20h20"/></symbol>
<symbol id="icon-sparkles" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12 3 1.5 4.5L18 9l-4.5 1.5L12 15l-1.5-4.5L6 9l4.5-1.5Z"/><path d="M19 14v4"/><path d="M17 16h4"/><path d="M5 17v3"/><path d="M4 18.5h3"/></symbol>
<symbol id="icon-arrow-right" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14"/><path d="m13 6 6 6-6 6"/></symbol>
</defs>
</svg>
<header class="site-header" role="banner">
<div class="container">
<p class="eyebrow">UC Davis</p>
<h1>Student Resources — Frequently Asked Questions</h1>
<p class="lede">A guide to campus resources for academic support, health and wellness, careers and internships, and community life. Every link opens the official UC Davis page in a new tab.</p>
</div>
</header>
<nav class="toc" aria-label="On this page">
<div class="container">
<h2 class="toc-title">Jump to a section</h2>
<ul class="toc-cards" role="list">
<li>
<a href="#general-interest" class="toc-card">
<span class="toc-card-icon" aria-hidden="true"><svg class="toc-card-svg"><use href="#icon-sparkles"/></svg></span>
<span class="toc-card-body">
<span class="toc-card-label">General interest</span>
<span class="toc-card-meta">5 quick resources</span>
</span>
<span class="toc-card-arrow" aria-hidden="true"><svg class="toc-card-svg-sm"><use href="#icon-arrow-right"/></svg></span>
</a>
</li>
<li>
<a href="#academic-support" class="toc-card">
<span class="toc-card-icon" aria-hidden="true"><svg class="toc-card-svg"><use href="#icon-graduation-cap"/></svg></span>
<span class="toc-card-body">
<span class="toc-card-label">Academic support</span>
<span class="toc-card-meta">12 questions</span>
</span>
<span class="toc-card-arrow" aria-hidden="true"><svg class="toc-card-svg-sm"><use href="#icon-arrow-right"/></svg></span>
</a>
</li>
<li>
<a href="#health-wellness" class="toc-card">
<span class="toc-card-icon" aria-hidden="true"><svg class="toc-card-svg"><use href="#icon-heart-pulse"/></svg></span>
<span class="toc-card-body">
<span class="toc-card-label">Health & wellness</span>
<span class="toc-card-meta">12 questions</span>
</span>
<span class="toc-card-arrow" aria-hidden="true"><svg class="toc-card-svg-sm"><use href="#icon-arrow-right"/></svg></span>
</a>
</li>
<li>
<a href="#careers-internships" class="toc-card">
<span class="toc-card-icon" aria-hidden="true"><svg class="toc-card-svg"><use href="#icon-briefcase"/></svg></span>
<span class="toc-card-body">
<span class="toc-card-label">Careers & internships</span>
<span class="toc-card-meta">8 questions</span>
</span>
<span class="toc-card-arrow" aria-hidden="true"><svg class="toc-card-svg-sm"><use href="#icon-arrow-right"/></svg></span>
</a>
</li>
<li>
<a href="#campus-community" class="toc-card">
<span class="toc-card-icon" aria-hidden="true"><svg class="toc-card-svg"><use href="#icon-users"/></svg></span>
<span class="toc-card-body">
<span class="toc-card-label">Campus community</span>
<span class="toc-card-meta">7 questions</span>
</span>
<span class="toc-card-arrow" aria-hidden="true"><svg class="toc-card-svg-sm"><use href="#icon-arrow-right"/></svg></span>
</a>
</li>
</ul>
<p class="toc-hint">Tip: press <kbd>Tab</kbd> to move between questions, <kbd>Enter</kbd> or <kbd>Space</kbd> to open an answer, and <kbd>Esc</kbd> to close the current one.</p>
<div class="toc-controls">
<button type="button" class="btn" id="expand-all">Expand all answers</button>
<button type="button" class="btn btn-secondary" id="collapse-all">Collapse all answers</button>
</div>
</div>
</nav>
<main id="main" class="container" tabindex="-1">
<section id="general-interest" aria-labelledby="general-interest-heading">
<h2 id="general-interest-heading">General interest</h2>
<ul class="resource-list resource-list-icons">
<li>
<span class="ri-icon" aria-hidden="true">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2 4 5v6c0 5 3.5 9.5 8 11 4.5-1.5 8-6 8-11V5l-8-3Z"/><path d="m9 12 2 2 4-4"/></svg>
</span>
<div class="ri-body">
<strong>COVID-19 information.</strong>
Information on campus
<a href="https://campusready.ucdavis.edu" target="_blank" rel="noopener noreferrer">COVID-19 policies<span class="sr-only"> (opens in a new tab)</span></a>.
</div>
</li>
<li>
<span class="ri-icon" aria-hidden="true">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 1 0-7.78 7.78L12 21.23l8.84-8.84a5.5 5.5 0 0 0 0-7.78Z"/></svg>
</span>
<div class="ri-body">
<strong>Inclusive excellence resources.</strong>
The UC Davis Office of Inclusive Excellence has compiled resources on education and guidance to
<a href="https://excellence.ucdavis.edu/hate-free-UC-Davis" target="_blank" rel="noopener noreferrer">advance a culture of respect and dignity for all members of our community<span class="sr-only"> (opens in a new tab)</span></a>.
</div>
</li>
<li>
<span class="ri-icon" aria-hidden="true">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 13h18l-2-6H5l-2 6Z"/><path d="M3 13v5h2"/><path d="M21 13v5h-2"/><circle cx="7.5" cy="17.5" r="1.5"/><circle cx="16.5" cy="17.5" r="1.5"/></svg>
</span>
<div class="ri-body">
<strong>Safe Ride Home Services.</strong>
Information about
<a href="https://police.ucdavis.edu/safe-rides" target="_blank" rel="noopener noreferrer">Safe Ride Home Services<span class="sr-only"> (opens in a new tab)</span></a>
is available as an alternative to walking alone at night. Call
<a href="tel:+15307542677">530-754-2677</a>
or use the
<a href="https://police.ucdavis.edu/safe-rides#app" target="_blank" rel="noopener noreferrer">UC Davis Safe Ride App<span class="sr-only"> (opens in a new tab)</span></a>.
Wheelchair accommodations are available.
</div>
</li>
<li>
<span class="ri-icon" aria-hidden="true">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="5" width="18" height="16" rx="2"/><path d="M3 9h18"/><path d="M8 3v4"/><path d="M16 3v4"/><circle cx="12" cy="15" r="1.5" fill="currentColor" stroke="none"/></svg>
</span>
<div class="ri-body">
<strong>Multicultural holidays calendar.</strong>
Check out the
<a href="https://excellence.ucdavis.edu/resources/multicultural-calendar" target="_blank" rel="noopener noreferrer">Multicultural Holidays calendar<span class="sr-only"> (opens in a new tab)</span></a>
to learn more about multicultural holidays and observances each month.
</div>
</li>
<li>
<span class="ri-icon" aria-hidden="true">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="4.5"/><path d="M12 2v2"/><path d="M12 20v2"/><path d="m4.22 4.22 1.42 1.42"/><path d="m18.36 18.36 1.42 1.42"/><path d="M2 12h2"/><path d="M20 12h2"/><path d="m4.22 19.78 1.42-1.42"/><path d="m18.36 5.64 1.42-1.42"/></svg>
</span>
<div class="ri-body">
<strong>Wellness calendar.</strong>
The
<a href="https://greatergood.berkeley.edu/article/item/your_happiness_calendar_for_april_2026" target="_blank" rel="noopener noreferrer">Happiness Calendar for April 2026<span class="sr-only"> (opens in a new tab)</span></a>
provides a day-by-day guide to well-being.
</div>
</li>
</ul>
</section>
<section id="academic-support" aria-labelledby="academic-support-heading">
<h2 id="academic-support-heading">Academic support</h2>
<div class="faq">
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="as-1">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-shield"/></svg></span>
<span class="faq-question-text">Help — I am being harassed or discriminated against. Where do I go?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="as-1" class="faq-answer" hidden>
<h4>Harassment and discrimination resources</h4>
<dl class="resource-dl">
<dt><a href="https://hdapp.ucdavis.edu" target="_blank" rel="noopener noreferrer">Harassment and Discrimination Assistance and Prevention Program<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Supports the University's commitment to a discrimination-free work and learning environment by educating the campus community about the issues, assisting individuals and campus units to resolve conflicts and complaints related to harassment, discrimination, sexual harassment, sexual violence, hate and bias. Also serves as the central office for receiving reports and maintaining records of these types of complaints.</dd>
<dt><a href="https://care.ucdavis.edu" target="_blank" rel="noopener noreferrer">Center for Advocacy Resources & Education (CARE)<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>CARE is dedicated to reducing the incidence of sexual violence, including sexual assault, sexual harassment, domestic and dating violence, and stalking in the campus community. CARE serves the students, faculty, and staff of the University at both the Davis campus and Sacramento campus. Our philosophy is that through education we can prevent these forms of violence. <a href="https://www.youtube.com/watch?v=AbE8RdFKFkE" target="_blank" rel="noopener noreferrer">Watch a CARE video<span class="sr-only"> (opens in a new tab)</span></a> to learn more about their resources.</dd>
<dt><a href="https://reporthateandbias.ucdavis.edu/filing-report" target="_blank" rel="noopener noreferrer">Report Hate and Bias<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>If you believe you have witnessed, or that you have been a target of, discrimination, harassment, or a hate- or bias-motivated incident on campus or while participating in a University-sponsored activity, you can make a report at this site.</dd>
<dt>
<a href="https://studentsupport.ucdavis.edu" target="_blank" rel="noopener noreferrer">Office of Student Support<span class="sr-only"> (opens in a new tab)</span></a>
and
<a href="https://studentconduct.ucdavis.edu" target="_blank" rel="noopener noreferrer">Student Conduct and Integrity<span class="sr-only"> (opens in a new tab)</span></a>
</dt>
<dd>Report misconduct, including <a href="https://studentconduct.ucdavis.edu/conduct/non-academic-misconduct" target="_blank" rel="noopener noreferrer">social misconduct<span class="sr-only"> (opens in a new tab)</span></a> such as hazing, harassment, theft, vandalism, noise violations, and violations of alcohol and drug policies. Also provides information about student rights and grievances. Not sure where to start when you have a grievance? The Office of Student Support is a good place to begin.</dd>
<dt><a href="https://ombuds.ucdavis.edu" target="_blank" rel="noopener noreferrer">Office of the Ombuds<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Provides confidential, independent, impartial, and informal problem-solving and conflict management resources for all members of the UC Davis and UC Davis Health campus communities. <a href="https://www.youtube.com/watch?v=1Ehj5MnRwpw" target="_blank" rel="noopener noreferrer">Watch a video about the Office of the Ombuds<span class="sr-only"> (opens in a new tab)</span></a> to learn more.</dd>
<dt><a href="https://pab.ucdavis.edu" target="_blank" rel="noopener noreferrer">Police Accountability Board<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>The Police Accountability Board develops and promotes accountability, trust, and communication between the campus community and the UC Davis Police Department. Any person who feels they may have been directly affected by UC Davis police misconduct may file a complaint.</dd>
<dt><a href="https://stophazing.ucdavis.edu" target="_blank" rel="noopener noreferrer">Stop Hazing<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Learn how to identify, report, and discourage hazing, and implement positive ways to bring groups together. Are you or someone you know being hazed? Hazing thrives in silence — <a href="https://stophazing.ucdavis.edu/what-to-do" target="_blank" rel="noopener noreferrer">learn more about how to report a hazing incident<span class="sr-only"> (opens in a new tab)</span></a>.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="as-2">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-monitor"/></svg></span>
<span class="faq-question-text">I am looking for media, technology, and library resources for my classes. How can I stay safe from phishing scams and keep my computer secure?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="as-2" class="faq-answer" hidden>
<h4>Media and technology resources</h4>
<dl class="resource-dl">
<dt><a href="https://computerrooms.ucdavis.edu/ietmedialab.html" target="_blank" rel="noopener noreferrer">IET Media Lab<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Provides access to media equipment and software for students, staff, and faculty to create their own projects, including a scanner, video, audio, and general computer stations.</dd>
<dt><a href="https://housing.ucdavis.edu/computer-support/free-software/" target="_blank" rel="noopener noreferrer">Free and discounted software<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>UC Davis offers free or discounted software to students and employees through MyUCDavis. The software ranges from Ad-Aware to MATLAB and covers a wide range of educational and computer security needs.</dd>
<dt>Need a laptop or Wi-Fi access?</dt>
<dd>Check out the <a href="https://keepteaching.ucdavis.edu/student-resources/need-wi-fi" target="_blank" rel="noopener noreferrer">Student Resources page<span class="sr-only"> (opens in a new tab)</span></a>. You can also connect with an <a href="https://ossja.ucdavis.edu/case-management-student-support" target="_blank" rel="noopener noreferrer">Office of Student Support Case Manager<span class="sr-only"> (opens in a new tab)</span></a> for other support and referrals.</dd>
<dt><a href="https://library.ucdavis.edu" target="_blank" rel="noopener noreferrer">UC Davis Library<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Books, e-books, journals, movies, music, maps, government documents, and more are available through the UC Davis Library. Have a question? Librarians are available 24/7 through a chat feature on the site. <a href="https://library.ucdavis.edu/off-campus-access/" target="_blank" rel="noopener noreferrer">Install the VPN client to access library resources from off campus<span class="sr-only"> (opens in a new tab)</span></a>.</dd>
<dt>Identity theft and computer security</dt>
<dd>Ensure that your computer is <a href="https://iet.ucdavis.edu/security/ideas-students" target="_blank" rel="noopener noreferrer">safe and secure with these helpful tips<span class="sr-only"> (opens in a new tab)</span></a>. Learn to spot and protect yourself from phishing attacks and report suspicious email on the <a href="https://phishbowl.ucdavis.edu" target="_blank" rel="noopener noreferrer">Phish Bowl site<span class="sr-only"> (opens in a new tab)</span></a> (you will be asked to enter your UC Davis CAS authentication to access this site).</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="as-3">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-pencil"/></svg></span>
<span class="faq-question-text">Where can I find additional academic support (writing, editing, tutoring)?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="as-3" class="faq-answer" hidden>
<h4>Academic support resources</h4>
<dl class="resource-dl">
<dt><a href="https://tutoring.ucdavis.edu" target="_blank" rel="noopener noreferrer">Academic Assistance and Tutoring Centers (AATC)<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Free academic support for undergraduates in biology, chemistry, economics, mathematics, physics, statistics, and writing across the disciplines. Tutoring, classes, and workshops are offered throughout the academic year.</dd>
<dt><a href="https://writingcenter.ucdavis.edu" target="_blank" rel="noopener noreferrer">Writing Center<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Free workshops and one-on-one consultations to support writing projects and assignments for all UC Davis students.</dd>
<dt><a href="https://tutoring.ucdavis.edu/pathways/scls" target="_blank" rel="noopener noreferrer">Success Coaching and Learning Strategies<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Free one-on-one appointments, workshops, and web resources covering topics such as time management, academic skills, and life skills.</dd>
</dl>
<p>Many departments also offer individual tutoring for the classes they offer. Check with your instructors, TAs, and academic advisors to see if tutoring resources are available for your class.</p>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="as-4">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-scale"/></svg></span>
<span class="faq-question-text">What is expected of me and other students in terms of honesty and integrity?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="as-4" class="faq-answer" hidden>
<h4>Academic integrity resources</h4>
<dl class="resource-dl">
<dt><a href="https://studentconduct.ucdavis.edu/conduct" target="_blank" rel="noopener noreferrer">Student Conduct and Integrity — Conduct<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Provides a framework for upholding standards of academic honesty and responsible behavior, promotes student development, and assists students in need.</dd>
<dt><a href="https://studentconduct.ucdavis.edu/conduct/policies/student-conduct-and-discipline-interim#102.01.1" target="_blank" rel="noopener noreferrer">UC Davis Code of Academic Conduct<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>The official policy outlining student academic conduct expectations.</dd>
<dt><a href="https://iet.ucdavis.edu/aggie-ai" target="_blank" rel="noopener noreferrer">Use of ChatGPT and other generative AI technologies<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Resources for citing generative AI tools such as ChatGPT: <a href="https://apastyle.apa.org/blog/how-to-cite-chatgpt" target="_blank" rel="noopener noreferrer">APA style<span class="sr-only"> (opens in a new tab)</span></a>, <a href="https://style.mla.org/citing-generative-ai/" target="_blank" rel="noopener noreferrer">MLA style<span class="sr-only"> (opens in a new tab)</span></a>, and <a href="https://guides.library.ucdavis.edu/genai/resource" target="_blank" rel="noopener noreferrer">library guides for general information<span class="sr-only"> (opens in a new tab)</span></a>.</dd>
<dt><a href="https://iet.ucdavis.edu/aggie-ai/student-guide-gen-ai" target="_blank" rel="noopener noreferrer">Ethical use of generative AI tools<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Always check with your instructor before using these tools. Inappropriate or unapproved uses of AI tools in your courses can be reported as academic misconduct.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="as-5">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-briefcase"/></svg></span>
<span class="faq-question-text">I am looking for internship opportunities related to my major. Where do I start?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="as-5" class="faq-answer" hidden>
<h4>Internship and career resources</h4>
<dl class="resource-dl">
<dt><a href="https://careercenter.ucdavis.edu" target="_blank" rel="noopener noreferrer">Internships and Career Services<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Advises students on internships and career options. The <a href="https://washingtonprogram.ucdavis.edu" target="_blank" rel="noopener noreferrer">UC Davis Washington Program<span class="sr-only"> (opens in a new tab)</span></a> and <a href="https://uccs.ucdavis.edu" target="_blank" rel="noopener noreferrer">UC Center Sacramento<span class="sr-only"> (opens in a new tab)</span></a> also offer internship and experiential learning opportunities in Washington, DC and Sacramento, respectively.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="as-6">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-graduation-cap"/></svg></span>
<span class="faq-question-text">I need information about professional development. Where do I go?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="as-6" class="faq-answer" hidden>
<h4>Career resources</h4>
<dl class="resource-dl">
<dt><a href="https://careercenter.ucdavis.edu" target="_blank" rel="noopener noreferrer">Career Center<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Find resources for creating professional communications, networking, and more.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="as-7">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-dollar"/></svg></span>
<span class="faq-question-text">Where can I get information about financial aid?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="as-7" class="faq-answer" hidden>
<h4>Financial aid resources</h4>
<dl class="resource-dl">
<dt><a href="https://financialaid.ucdavis.edu" target="_blank" rel="noopener noreferrer">UC Davis Financial Aid and Scholarships<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Provides students with information pertaining to financial aid.</dd>
<dt><a href="https://giving.ucdavis.edu/ways-to-give/student-foundation/apply-assistance" target="_blank" rel="noopener noreferrer">Student Emergency Relief Aid<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Provides funds to cover short-term needs not covered by other assistance.</dd>
<dt><a href="https://financialaid.ucdavis.edu/undergraduate/apply/undocumented" target="_blank" rel="noopener noreferrer">Financial aid information for AB540 and undocumented students<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Guidance and application details for AB540 and undocumented students.</dd>
<dt><a href="https://financialaid.ucdavis.edu/undergraduate/apply/out-of-state" target="_blank" rel="noopener noreferrer">Financial aid information for non-California residents<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Guidance for students who are not California residents.</dd>
<dt><a href="https://financialaid.ucdavis.edu/undergraduate/apply/international" target="_blank" rel="noopener noreferrer">Financial aid information for international students<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Guidance and funding options specifically for international students.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="as-8">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-globe"/></svg></span>
<span class="faq-question-text">I am an international student. Where can I find additional academic support?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="as-8" class="faq-answer" hidden>
<h4>Academic advising resources</h4>
<p>Each college has academic advisors who specialize in supporting international students to ensure that educational and career goals are met. International academic advisors provide guidance on undergraduate and college requirements, changing majors, and general questions about life at UC Davis.</p>
<ul>
<li><a href="https://caes.ucdavis.edu/students/advising/internationalstudents" target="_blank" rel="noopener noreferrer">College of Agricultural and Environmental Sciences<span class="sr-only"> (opens in a new tab)</span></a></li>
<li><a href="https://biology.ucdavis.edu/undergraduate/advising/basc/academic-planning/international" target="_blank" rel="noopener noreferrer">College of Biological Sciences<span class="sr-only"> (opens in a new tab)</span></a></li>
<li><a href="https://engineering.ucdavis.edu/undergraduates/academic-advising" target="_blank" rel="noopener noreferrer">College of Engineering<span class="sr-only"> (opens in a new tab)</span></a></li>
<li><a href="https://lettersandscience.ucdavis.edu/international-student-advising" target="_blank" rel="noopener noreferrer">College of Letters and Science<span class="sr-only"> (opens in a new tab)</span></a></li>
</ul>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="as-9">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-accessibility"/></svg></span>
<span class="faq-question-text">How can I request special accommodations for my classes, like extra exam time or note-taking assistance?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="as-9" class="faq-answer" hidden>
<h4>Disability accommodation resources</h4>
<dl class="resource-dl">
<dt><a href="https://sdc.ucdavis.edu" target="_blank" rel="noopener noreferrer">UC Davis Student Disability Center<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Committed to ensuring specialized academic support services so that students with disabilities receive equal educational opportunities.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="as-10">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-id-card"/></svg></span>
<span class="faq-question-text">Where can I get information about immigration and visa-related issues?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="as-10" class="faq-answer" hidden>
<h4>Immigration and student visa resources</h4>
<dl class="resource-dl">
<dt><a href="https://siss.ucdavis.edu" target="_blank" rel="noopener noreferrer">International Students and Scholars<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Provides immigration services, advocacy, and programs to support the UC Davis international community. For visa and status questions, please refer students here.</dd>
<dt><a href="https://undocumented.ucdavis.edu" target="_blank" rel="noopener noreferrer">Undocumented Student Resource Center<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Information on policies impacting California's undocumented population, with links to mentorship, trainings, legislation, legal resources, and grants.</dd>
<dt><a href="https://law.ucdavis.edu/ucimm/" target="_blank" rel="noopener noreferrer">UC Immigrant Legal Services Center<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Provides free immigration legal help to all UC Davis students and their immediate family members (parents, siblings, spouses, and children).</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="as-11">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-users"/></svg></span>
<span class="faq-question-text">Where can I get information about advocacy groups for international students?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="as-11" class="faq-answer" hidden>
<h4>International student resources</h4>
<dl class="resource-dl">
<dt><a href="https://siss.ucdavis.edu" target="_blank" rel="noopener noreferrer">International Students and Scholars (ISS)<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Provides immigration services, advocacy, and programs to support the UC Davis international community. For visa and status questions, please refer students to ISS.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="as-12">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-clipboard"/></svg></span>
<span class="faq-question-text">I need help planning courses for my major, general education, and college requirements. How do I add or drop a course after the deadline?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="as-12" class="faq-answer" hidden>
<h4>Academic planning resources</h4>
<p>Each college has staff and faculty advisors to help you plan your courses, provide guidance on late drops and adds, pass/no pass options, and ensure you meet your degree requirements. The advising offices for each college are listed below. Within your major, you also have access to advising services and student peer advisors — refer to the advising section of your major's website for more specific information.</p>
<ul>
<li><a href="https://caes.ucdavis.edu/students/advising" target="_blank" rel="noopener noreferrer">College of Agricultural and Environmental Sciences<span class="sr-only"> (opens in a new tab)</span></a></li>
<li><a href="https://biology.ucdavis.edu/undergraduate/advising/basc" target="_blank" rel="noopener noreferrer">College of Biological Sciences — Biology Academic Success Center<span class="sr-only"> (opens in a new tab)</span></a></li>
<li><a href="https://engineering.ucdavis.edu/undergraduates/academic-advising" target="_blank" rel="noopener noreferrer">College of Engineering<span class="sr-only"> (opens in a new tab)</span></a></li>
<li><a href="https://lettersandscience.ucdavis.edu/student-success/advising" target="_blank" rel="noopener noreferrer">College of Letters and Science<span class="sr-only"> (opens in a new tab)</span></a></li>
</ul>
</div>
</article>
</div>
</section>
<section id="health-wellness" aria-labelledby="health-wellness-heading">
<h2 id="health-wellness-heading">Health and wellness</h2>
<aside class="callout callout-urgent" role="note" aria-label="Emergency and crisis contacts">
<h3>If you need urgent help</h3>
<ul>
<li><strong>Emergency:</strong> call <a href="tel:911">911</a> or go to the nearest emergency room.</li>
<li><strong>Mental Health Crisis Consultation:</strong> <a href="tel:+15307520871">530-752-0871</a>.</li>
<li><strong>Crisis Text Line:</strong> text <strong>RELATE</strong> to <a href="sms:741741&body=RELATE">741741</a> for free, 24/7 confidential texting with a trained crisis counselor.</li>
<li><strong>Health 34 (non-emergency support, 24/7):</strong> <a href="tel:+15307543434">530-754-3434</a>.</li>
</ul>
</aside>
<div class="faq">
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="hw-1">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-first-aid"/></svg></span>
<span class="faq-question-text">Help — I am not well and need immediate attention. Where do I go?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="hw-1" class="faq-answer" hidden>
<dl class="resource-dl">
<dt><a href="https://shcs.ucdavis.edu" target="_blank" rel="noopener noreferrer">UC Davis Student Health & Counseling Services (SHCS)<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>The main hub for UC Davis student health and counseling services. Students are provided information about medical care, counseling, wellness, urgent care, insurance coverage, and other resources and services available to them.</dd>
<dt><a href="https://studentsupport.ucdavis.edu/case-management" target="_blank" rel="noopener noreferrer">Office of Student Support Case Managers<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Case managers assist students who are struggling with a range of life issues. They connect students with a variety of resources and work closely with academic advisors, Student Health and Counseling Services, the Students of Concern Response Team, Aggie Compass, hospitals, and other campus and local or regional support services.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="hw-2">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-shield"/></svg></span>
<span class="faq-question-text">Help — I am being harassed or bullied. Where can I find help?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="hw-2" class="faq-answer" hidden>
<dl class="resource-dl">
<dt><a href="https://care.ucdavis.edu" target="_blank" rel="noopener noreferrer">Center for Advocacy Resources & Education (CARE)<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>CARE is dedicated to reducing the incidence of sexual violence, including sexual assault, sexual harassment, domestic and dating violence, and stalking in the campus community. CARE serves students, faculty, and staff at both the Davis and Sacramento campuses. <a href="https://www.youtube.com/watch?v=AbE8RdFKFkE&t=3s" target="_blank" rel="noopener noreferrer">Watch a CARE video<span class="sr-only"> (opens in a new tab)</span></a> to learn more.</dd>
<dt><a href="https://hdapp.ucdavis.edu" target="_blank" rel="noopener noreferrer">Harassment and Discrimination Assistance and Prevention Program<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Supports the University's commitment to a discrimination-free work and learning environment by educating the campus community, assisting individuals and units in resolving conflicts related to harassment and discrimination, and serving as the central office for receiving reports.</dd>
<dt><a href="https://reporthateandbias.ucdavis.edu/filing-report" target="_blank" rel="noopener noreferrer">Report Hate and Bias<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>If you believe you have witnessed or been the target of discrimination, harassment, or a hate- or bias-motivated incident on campus or at a University-sponsored activity, you can make a report here.</dd>
<dt>
<a href="https://studentsupport.ucdavis.edu" target="_blank" rel="noopener noreferrer">Office of Student Support<span class="sr-only"> (opens in a new tab)</span></a>
and
<a href="https://studentconduct.ucdavis.edu" target="_blank" rel="noopener noreferrer">Student Conduct and Integrity<span class="sr-only"> (opens in a new tab)</span></a>
</dt>
<dd>Report misconduct, including <a href="https://studentconduct.ucdavis.edu/conduct/non-academic-misconduct" target="_blank" rel="noopener noreferrer">social misconduct<span class="sr-only"> (opens in a new tab)</span></a> such as hazing, harassment, theft, vandalism, noise violations, and violations of alcohol and drug policies. Also provides information about <a href="https://studentconduct.ucdavis.edu/rights" target="_blank" rel="noopener noreferrer">student rights and grievances<span class="sr-only"> (opens in a new tab)</span></a>. Not sure where to start? The Office of Student Support is a good place to begin.</dd>
<dt><a href="https://ombuds.ucdavis.edu" target="_blank" rel="noopener noreferrer">Office of the Ombuds<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Provides confidential, independent, impartial, and informal problem-solving and conflict management resources for all members of the UC Davis and UC Davis Health campus communities. <a href="https://www.youtube.com/watch?v=1Ehj5MnRwpw" target="_blank" rel="noopener noreferrer">Watch a video about the Office of the Ombuds<span class="sr-only"> (opens in a new tab)</span></a> to learn more.</dd>
<dt><a href="https://pab.ucdavis.edu" target="_blank" rel="noopener noreferrer">Police Accountability Board<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>The board develops and promotes accountability, trust, and communication between the campus community and the UC Davis Police Department. Any person who feels affected by UC Davis police misconduct may file a complaint.</dd>
<dt><a href="https://stophazing.ucdavis.edu" target="_blank" rel="noopener noreferrer">Stop Hazing<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Learn how to identify, report, and discourage hazing, and implement positive ways to bring groups together. <a href="https://stophazing.ucdavis.edu/what-to-do" target="_blank" rel="noopener noreferrer">Learn more about how to report a hazing incident<span class="sr-only"> (opens in a new tab)</span></a>.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="hw-3">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-heart-pulse"/></svg></span>
<span class="faq-question-text">Help — I am stressed or depressed and need help. Where do I go?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="hw-3" class="faq-answer" hidden>
<dl class="resource-dl">
<dt><a href="https://shcs.ucdavis.edu" target="_blank" rel="noopener noreferrer">UC Davis Student Health & Counseling Services (SHCS)<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>The main hub for student health and counseling services, with information about medical care, counseling, wellness, urgent care, insurance coverage, and more. You can also go directly to <a href="https://shcs.ucdavis.edu/services/counseling-services" target="_blank" rel="noopener noreferrer">Counseling Services<span class="sr-only"> (opens in a new tab)</span></a>.</dd>
<dt><a href="https://mentalhealth.ucdavis.edu" target="_blank" rel="noopener noreferrer">Aggie Mental Health<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>A one-stop-shop for mental health resources, including support for others, self-care information, academics and mental health, ways to get involved, and personal stories of struggle and resilience.</dd>
<dt><a href="https://shcs.ucdavis.edu/online-visits" target="_blank" rel="noopener noreferrer">Online Visits / Live Health Online<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Provides online counseling, psychiatry, and medical services, available 24/7.</dd>
<dt><a href="https://shcs.ucdavis.edu/skills-workshops" target="_blank" rel="noopener noreferrer">Counseling Services Skills Workshops and Podcasts<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>SHCS workshops and podcasts on topics such as grief and loss, mindfulness, eating behaviors, and radical acceptance.</dd>
<dt><a href="https://fire.ucdavis.edu/health34" target="_blank" rel="noopener noreferrer">Health 34<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Free non-emergency support and services for mental health and basic medical care, available to anyone on the UC Davis campus. A helpful resource for those who may not want counseling services but could use a friendly listening ear. Available 24/7/365 at <a href="tel:+15307543434">530-754-3434</a>. <a href="https://www.youtube.com/watch?v=7A-aWnFKTOE" target="_blank" rel="noopener noreferrer">Watch a Health 34 video<span class="sr-only"> (opens in a new tab)</span></a> to learn more.</dd>
</dl>
<p class="callout-text"><strong>Remember — it's OK to not feel OK. UC Davis resources are here to support you.</strong></p>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="hw-4">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-pill"/></svg></span>
<span class="faq-question-text">How can I get my prescriptions filled?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="hw-4" class="faq-answer" hidden>
<dl class="resource-dl">
<dt><a href="https://shcs.ucdavis.edu" target="_blank" rel="noopener noreferrer">UC Davis Student Health & Counseling Services (SHCS)<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>The main hub for student health and counseling services. Go directly to the <a href="https://shcs.ucdavis.edu/services/pharmacy" target="_blank" rel="noopener noreferrer">SHCS Pharmacy<span class="sr-only"> (opens in a new tab)</span></a>.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="hw-5">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-user-plus"/></svg></span>
<span class="faq-question-text">How can I find a doctor?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="hw-5" class="faq-answer" hidden>
<dl class="resource-dl">
<dt><a href="https://shcs.ucdavis.edu" target="_blank" rel="noopener noreferrer">UC Davis Student Health & Counseling Services (SHCS)<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>The main hub for student health and counseling services, with information about medical care, counseling, wellness, urgent care, insurance coverage, and other resources.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="hw-6">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-shopping-bag"/></svg></span>
<span class="faq-question-text">I'm having difficulty affording groceries or accessing enough food. Where do I go?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="hw-6" class="faq-answer" hidden>
<dl class="resource-dl">
<dt><a href="https://aggiecompass.ucdavis.edu/food-security" target="_blank" rel="noopener noreferrer">Aggie Compass: Nutritious Food Resources<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Aggie Compass provides information about resources for fresh produce and the food you need. Many students face these challenges during college, and it is healthy to seek support. For general information about basic needs resources, visit the <a href="https://aggiecompass.ucdavis.edu" target="_blank" rel="noopener noreferrer">Aggie Compass home page<span class="sr-only"> (opens in a new tab)</span></a> or the <a href="https://acbnc.advisingfrontdesk.lsit.ucdavis.edu/signin" target="_blank" rel="noopener noreferrer">virtual front desk for support<span class="sr-only"> (opens in a new tab)</span></a>.</dd>
<dt><a href="https://aggiecompass.ucdavis.edu/aggieeats" target="_blank" rel="noopener noreferrer">Aggie Eats Food Truck<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Stop by the food truck to grab a healthy, delicious meal. Pay what you want — or pay nothing at all.</dd>
<dt><a href="https://healthy.ucdavis.edu/eating-well/food-access-map" target="_blank" rel="noopener noreferrer">The Food Access Map<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Helps you find food and food resources on campus and in the Davis community that meet your needs.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="hw-7">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-apple"/></svg></span>
<span class="faq-question-text">I want to try to eat healthier. Where can I find resources and support?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="hw-7" class="faq-answer" hidden>
<dl class="resource-dl">
<dt><a href="https://aggiecompass.ucdavis.edu/food-security" target="_blank" rel="noopener noreferrer">Aggie Compass: Nutritious Food Resources<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Information about resources for fresh produce and food. For general information about basic needs, visit the <a href="https://aggiecompass.ucdavis.edu" target="_blank" rel="noopener noreferrer">Aggie Compass home page<span class="sr-only"> (opens in a new tab)</span></a> or the <a href="https://acbnc.advisingfrontdesk.lsit.ucdavis.edu/signin" target="_blank" rel="noopener noreferrer">virtual front desk for support<span class="sr-only"> (opens in a new tab)</span></a>.</dd>
<dt><a href="https://campusrecreation.ucdavis.edu" target="_blank" rel="noopener noreferrer">UC Davis Campus Recreation<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Physical activity is a key component of a healthy lifestyle. This site has information on informal and formal recreation opportunities. Stop by the <a href="https://campusrecreation.ucdavis.edu/events/drop-nutrition-advising" target="_blank" rel="noopener noreferrer">drop-in peer nutrition counselors<span class="sr-only"> (opens in a new tab)</span></a> in the ARC lobby to ask quick nutrition questions. <a href="https://campusrecreation.ucdavis.edu/fee-waiver" target="_blank" rel="noopener noreferrer">Well-being fee waivers<span class="sr-only"> (opens in a new tab)</span></a> are available for Campus Recreation programs. <a href="https://www.youtube.com/watch?v=gC3099b4bJ4" target="_blank" rel="noopener noreferrer">Watch a well-being fee waiver video<span class="sr-only"> (opens in a new tab)</span></a> to learn more.</dd>
<dt><a href="https://healthy.ucdavis.edu/eating-well/food-access-map" target="_blank" rel="noopener noreferrer">The Food Access Map<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Helps you find food and food resources on campus and in the Davis community that meet your needs.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="hw-8">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-dumbbell"/></svg></span>
<span class="faq-question-text">I want to exercise more. What are my options?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="hw-8" class="faq-answer" hidden>
<dl class="resource-dl">
<dt><a href="https://campusrecreation.ucdavis.edu" target="_blank" rel="noopener noreferrer">UC Davis Campus Recreation<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Information on informal and formal recreation opportunities. Get a <a href="https://campusrecreation.ucdavis.edu/events/arc-equipment-orientation" target="_blank" rel="noopener noreferrer">free ARC equipment orientation<span class="sr-only"> (opens in a new tab)</span></a> at any time. <a href="https://campusrecreation.ucdavis.edu/fee-waiver" target="_blank" rel="noopener noreferrer">Well-being fee waivers<span class="sr-only"> (opens in a new tab)</span></a> are available.</dd>
<dt><a href="https://memorialunion.ucdavis.edu/games-area" target="_blank" rel="noopener noreferrer">Memorial Union Games Area<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Bowling, billiards, console and PC gaming, and board games are available for students in the basement of the Memorial Union.</dd>
<dt><a href="https://healthy.ucdavis.edu/physical/walking-loops" target="_blank" rel="noopener noreferrer">UC Davis Walking Loops<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Take a walk on one of several loops around campus, ranging from about 1 mile to 5K depending on the path you choose.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="hw-9">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-baby"/></svg></span>
<span class="faq-question-text">Where can I find family support resources like childcare?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="hw-9" class="faq-answer" hidden>
<h4>Worklife & Wellness — UC Davis</h4>
<dl class="resource-dl">
<dt><a href="https://hr.ucdavis.edu/departments/worklife-wellness/student-parent/ucd-grant" target="_blank" rel="noopener noreferrer">UC Davis Student Parent Child Care Funding Program<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Information about and access to the application for the Community Based Care Grant (CBCG).</dd>
<dt><a href="https://hr.ucdavis.edu/departments/worklife-wellness/family-care" target="_blank" rel="noopener noreferrer">Family care and child care resources<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>General information on family care and child care.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="hw-10">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-scale"/></svg></span>
<span class="faq-question-text">Where can I find information about work-life balance?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="hw-10" class="faq-answer" hidden>
<dl class="resource-dl">
<dt><a href="https://worklife-wellness.ucdavis.edu/departments/worklife-wellness" target="_blank" rel="noopener noreferrer">Worklife & Wellness — UC Davis<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Resources for creating a balance between work life and wellness, including family care, community support, breastfeeding support, workplace flexibility, events, and work-life resources for academics.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="hw-11">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-home"/></svg></span>
<span class="faq-question-text">What other housing and wellness resources are available in Davis?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="hw-11" class="faq-answer" hidden>
<dl class="resource-dl">
<dt><a href="https://www.cityofdavis.org/city-hall/social-services-and-housing" target="_blank" rel="noopener noreferrer">City of Davis — Social Services and Housing<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>The City of Davis has information on local health-related initiatives and community resources.</dd>
<dt><a href="https://aggiecompass.ucdavis.edu/housing-security" target="_blank" rel="noopener noreferrer">Aggie Compass Housing Resources<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>General information about housing resources in the Davis area, including emergency shelter, transitional housing, housing listings, free legal services, and housing organizations. For basic needs, see the <a href="https://aggiecompass.ucdavis.edu" target="_blank" rel="noopener noreferrer">Aggie Compass home page<span class="sr-only"> (opens in a new tab)</span></a> or the <a href="https://acbnc.advisingfrontdesk.lsit.ucdavis.edu/signin" target="_blank" rel="noopener noreferrer">virtual front desk<span class="sr-only"> (opens in a new tab)</span></a>.</dd>
<dt><a href="https://chl.ucdavis.edu" target="_blank" rel="noopener noreferrer">ASUCD Community Housing Listing<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Off-campus housing listings, offered to UC Davis students and Davis community members through the Associated Students, UC Davis (ASUCD).</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="hw-12">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-helping-hand"/></svg></span>
<span class="faq-question-text">Are there campus resources for alcohol and substance abuse, addiction, or dependency?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="hw-12" class="faq-answer" hidden>
<dl class="resource-dl">
<dt><a href="https://shcs.ucdavis.edu/services/other-services/intervention-services" target="_blank" rel="noopener noreferrer">Intervention Services<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Services that empower students to make healthy, responsible choices, including individual consultations, interventions for self and others, trainings, group education, counseling, referrals for treatment, relapse prevention counseling, and smoking cessation services.</dd>
<dt><a href="https://shcs.ucdavis.edu/services/counseling-services" target="_blank" rel="noopener noreferrer">Student Health and Counseling Services<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Provides <a href="https://shcs.ucdavis.edu/health-topic/alcohol-abuse" target="_blank" rel="noopener noreferrer">alcohol abuse information, education, and support<span class="sr-only"> (opens in a new tab)</span></a>. SHCS offers individual and group support for substance abuse and similar needs.</dd>
<dt><a href="https://shcs.ucdavis.edu/health-and-wellness/alcohol-tobacco-and-other-drugs/narcan-map" target="_blank" rel="noopener noreferrer">Narcan access<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>For emergency opioid overdose, Narcan is available at several campus locations. Find them using the easy-to-use Narcan Access Map.</dd>
<dt><a href="https://shcs.ucdavis.edu/health-and-wellness/alcohol-tobacco-and-other-drugs/overdose-information" target="_blank" rel="noopener noreferrer">Aggies Act<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>A UC Davis protocol that ensures health and safety are the priority, so that students feel safe calling for help in potentially life-threatening situations involving alcohol and other substances. Call <a href="tel:911">911</a> if you see signs of alcohol poisoning in a friend or colleague. Be a friend. Make the call.</dd>
</dl>
</div>
</article>
</div>
</section>
<section id="careers-internships" aria-labelledby="careers-internships-heading">
<h2 id="careers-internships-heading">Careers and internships</h2>
<div class="faq">
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="ci-1">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-briefcase"/></svg></span>
<span class="faq-question-text">I am looking for internship opportunities related to my major. Where do I start?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="ci-1" class="faq-answer" hidden>
<p>The <a href="https://careercenter.ucdavis.edu/job-and-internship-search" target="_blank" rel="noopener noreferrer">Career Center Job and Internship Search<span class="sr-only"> (opens in a new tab)</span></a> offers comprehensive information about internships and job opportunities for undergraduates and recent graduates.</p>
<p>The <a href="https://washingtonprogram.ucdavis.edu" target="_blank" rel="noopener noreferrer">UC Davis Washington Program<span class="sr-only"> (opens in a new tab)</span></a> and <a href="https://uccs.ucdavis.edu" target="_blank" rel="noopener noreferrer">UC Center Sacramento<span class="sr-only"> (opens in a new tab)</span></a> provide internship opportunities in Washington, DC and Sacramento.</p>
<p>Faculty in your major are also valuable resources.</p>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="ci-2">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-graduation-cap"/></svg></span>
<span class="faq-question-text">I need information about professional development in general. Where do I go?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="ci-2" class="faq-answer" hidden>
<p>The <a href="https://careercenter.ucdavis.edu" target="_blank" rel="noopener noreferrer">Career Center<span class="sr-only"> (opens in a new tab)</span></a> offers career advising, workshops, and career fairs.</p>
<p>The <a href="https://hpa.ucdavis.edu" target="_blank" rel="noopener noreferrer">Health Professions Advising Office<span class="sr-only"> (opens in a new tab)</span></a> focuses on health careers.</p>
<p><a href="https://tutoring.ucdavis.edu/pathways/pre-grad-law" target="_blank" rel="noopener noreferrer">Pre-graduate and Pre-law Advising<span class="sr-only"> (opens in a new tab)</span></a> supports graduate and law school preparation.</p>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="ci-3">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-compass"/></svg></span>
<span class="faq-question-text">How can I learn more about possible career choices related to my major?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="ci-3" class="faq-answer" hidden>
<p>The <a href="https://careercenter.ucdavis.edu" target="_blank" rel="noopener noreferrer">Career Center<span class="sr-only"> (opens in a new tab)</span></a> provides resources to explore career options by major, offering workshops on resumes, interviews, cover letters, and professional communication.</p>
<p>Read the <a href="https://www.ucdavis.edu/majors/blog" target="_blank" rel="noopener noreferrer">What Can I Do With My Major? blog<span class="sr-only"> (opens in a new tab)</span></a> for alumni career stories.</p>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="ci-4">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-users"/></svg></span>
<span class="faq-question-text">If I participate in a conference or professional event, how do I best network?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="ci-4" class="faq-answer" hidden>
<p>The <a href="https://careercenter.ucdavis.edu" target="_blank" rel="noopener noreferrer">Career Center<span class="sr-only"> (opens in a new tab)</span></a> offers <a href="https://careercenter.ucdavis.edu/job-and-internship-search/networking" target="_blank" rel="noopener noreferrer">networking skills<span class="sr-only"> (opens in a new tab)</span></a> resources to help you develop professional relationships that support internship and career exploration.</p>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="ci-5">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-search"/></svg></span>
<span class="faq-question-text">Where do I find job postings for current students and UC Davis graduates?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="ci-5" class="faq-answer" hidden>
<p>The <a href="https://careercenter.ucdavis.edu" target="_blank" rel="noopener noreferrer">Career Center<span class="sr-only"> (opens in a new tab)</span></a> provides internship and job information.</p>
<p><a href="https://careercenter.ucdavis.edu/career-center-services/handshake" target="_blank" rel="noopener noreferrer">Handshake<span class="sr-only"> (opens in a new tab)</span></a> lists jobs and internships.</p>
<p><a href="https://vacancy.ucdavis.edu" target="_blank" rel="noopener noreferrer">ASUCD Jobs<span class="sr-only"> (opens in a new tab)</span></a> posts positions including writing, transit, and student government roles.</p>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="ci-6">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-envelope"/></svg></span>
<span class="faq-question-text">What should I put in my cover letter when I apply for a position?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="ci-6" class="faq-answer" hidden>
<p>The <a href="https://careercenter.ucdavis.edu" target="_blank" rel="noopener noreferrer">Career Center<span class="sr-only"> (opens in a new tab)</span></a> provides <a href="https://careercenter.ucdavis.edu/resumes-and-materials/cover-letters" target="_blank" rel="noopener noreferrer">cover letter<span class="sr-only"> (opens in a new tab)</span></a> guidance for creating personalized, tailored statements that tell your story impactfully.</p>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="ci-7">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-file-text"/></svg></span>
<span class="faq-question-text">What information goes on my resume, and what's the difference between a resume and a curriculum vitae (CV)?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="ci-7" class="faq-answer" hidden>
<p>The <a href="https://careercenter.ucdavis.edu" target="_blank" rel="noopener noreferrer">Career Center<span class="sr-only"> (opens in a new tab)</span></a> offers <a href="https://careercenter.ucdavis.edu/resumes-and-materials/resumes" target="_blank" rel="noopener noreferrer">resume resources<span class="sr-only"> (opens in a new tab)</span></a>, workshops, and online information to prepare resumes or CVs.</p>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="ci-8">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-message"/></svg></span>
<span class="faq-question-text">How do I best prepare for a job interview?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="ci-8" class="faq-answer" hidden>
<p>The <a href="https://careercenter.ucdavis.edu" target="_blank" rel="noopener noreferrer">Career Center<span class="sr-only"> (opens in a new tab)</span></a> provides <a href="https://careercenter.ucdavis.edu/interviews-and-offers" target="_blank" rel="noopener noreferrer">interviews and offers<span class="sr-only"> (opens in a new tab)</span></a> workshops, individual advising, and practice interview opportunities.</p>
</div>
</article>
</div>
</section>
<section id="campus-community" aria-labelledby="campus-community-heading">
<h2 id="campus-community-heading">Campus community</h2>
<div class="faq">
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="cc-1">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-home"/></svg></span>
<span class="faq-question-text">Where can I find information about the Davis community, housing, and off-campus living?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="cc-1" class="faq-answer" hidden>
<dl class="resource-dl">
<dt><a href="https://www.ucdavis.edu/campus-life/californias-college-town" target="_blank" rel="noopener noreferrer">UC Davis — City of Davis<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Information for students new to Davis.</dd>
<dt><a href="https://aggiecompass.ucdavis.edu/housing-security" target="_blank" rel="noopener noreferrer">Aggie Compass Housing Resources<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Information about emergency shelter, transitional housing, and housing listings.</dd>
<dt><a href="https://chl.ucdavis.edu" target="_blank" rel="noopener noreferrer">ASUCD Community Housing Listing<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Off-campus housing listings for UC Davis students.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="cc-2">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-users"/></svg></span>
<span class="faq-question-text">Where can I find family support resources like childcare?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="cc-2" class="faq-answer" hidden>
<dl class="resource-dl">
<dt><a href="https://hr.ucdavis.edu/departments/worklife-wellness/student-parent/ucd-grant" target="_blank" rel="noopener noreferrer">UC Davis Student Parent Child Care Funding Program<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Information about Community Based Care Grant applications.</dd>
<dt><a href="https://hr.ucdavis.edu/departments/worklife-wellness/family-care" target="_blank" rel="noopener noreferrer">Family care and child care resources<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>General family care resources available through Worklife & Wellness — UC Davis.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="cc-3">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-bus"/></svg></span>
<span class="faq-question-text">How do students get to campus?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="cc-3" class="faq-answer" hidden>
<dl class="resource-dl">
<dt><a href="https://transportation.ucdavis.edu" target="_blank" rel="noopener noreferrer">UC Davis Transportation and TAPS<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Parking permits and bicycle programs.</dd>
<dt><a href="https://www.amtrak.com/stations/dav" target="_blank" rel="noopener noreferrer">Amtrak<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Regional train travel (station at 840 Second Street, Davis).</dd>
<dt><a href="https://unitrans.ucdavis.edu" target="_blank" rel="noopener noreferrer">UniTrans<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Free bus service for undergraduate students with a valid ID. See <a href="https://unitrans.ucdavis.edu/information-services-services-customers-disabilities" target="_blank" rel="noopener noreferrer">services for customers with disabilities<span class="sr-only"> (opens in a new tab)</span></a>.</dd>
<dt><a href="https://yolobus.com" target="_blank" rel="noopener noreferrer">Yolobus<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Serves Davis and surrounding communities.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="cc-4">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-utensils"/></svg></span>
<span class="faq-question-text">What are popular lunch spots?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="cc-4" class="faq-answer" hidden>
<dl class="resource-dl">
<dt><a href="https://coffeehouse.ucdavis.edu" target="_blank" rel="noopener noreferrer">UC Davis ASUCD Coffee House<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Pizza, Tex-Mex, sandwiches, and daily rotating dishes.</dd>
<dt><a href="https://aggiecompass.ucdavis.edu/aggieeats" target="_blank" rel="noopener noreferrer">Aggie Eats Food Truck<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Pay-what-you-want meals.</dd>
<dt><a href="https://www.cityofdavis.org" target="_blank" rel="noopener noreferrer">City of Davis<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Additional dining information around town.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="cc-5">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-bar-chart"/></svg></span>
<span class="faq-question-text">What does the UC Davis student population look like?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="cc-5" class="faq-answer" hidden>
<dl class="resource-dl">
<dt><a href="https://aggiedata.ucdavis.edu/#student" target="_blank" rel="noopener noreferrer">UC Davis Student Population Statistics<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Demographic breakdowns and student success rates.</dd>
<dt><a href="https://www.ucdavis.edu/campus-life/californias-college-town" target="_blank" rel="noopener noreferrer">UC Davis — City of Davis<span class="sr-only"> (opens in a new tab)</span></a></dt>
<dd>Orientation information about the campus and city.</dd>
</dl>
</div>
</article>
<article class="faq-item">
<h3>
<button type="button" class="faq-question" aria-expanded="false" aria-controls="cc-6">
<span class="faq-q-icon" aria-hidden="true"><svg class="faq-q-icon-svg" aria-hidden="true" focusable="false"><use href="#icon-heart"/></svg></span>
<span class="faq-question-text">Where can I find other students like me?</span>
<span class="faq-icon" aria-hidden="true"></span>
</button>
</h3>
<div id="cc-6" class="faq-answer" hidden>
<dl class="resource-dl">
<dt><a href="https://studentaffairs.ucdavis.edu/student-life/communities/identity" target="_blank" rel="noopener noreferrer">Campus community resources map<span class="sr-only"> (opens in a new tab)</span></a></dt>