-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathag-qs-sched.html
1480 lines (1110 loc) · 68.7 KB
/
ag-qs-sched.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
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">
<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=Roboto+Slab:wght@100;300;400;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="sass/style.css">
</head>
<body>
<main>
<!--
Start of Question Session Interface
This section is the interface for the Question Session section on the Peer To Peer page. I moved this section to its own HTML document to help with organization.
This interface is the version seen on the live page. Unless there are changes to notes, graphics, or buttons, this part does not need to be copied.
If you are making a change to the QS schedules, do not include this section in your copy/paste. Begin to copy at the "COURSE LIST POPUPS" comment below this section.
-->
<section class="qs-overview" id="qs-overview">
<div class="u-center-text u-margin-bottom-medium">
<h2 class="heading-secondary">
Guided Study Groups
</h2>
<!-- <h3 class="heading-tertiary">No Sign-up Necessary!</h3> -->
</div>
<div class="qs-tile-box u-margin-bottom-big">
<div class="qs-tile qs-tile__dropin">
<div class="qs-tile__title">
<h3 class="heading-tertiary--white">Sign-up or Show Up!</h3>
</div>
<div class="qs-tile__icon-box">
<ion-icon name="log-in-outline" class="qs-tile__icon"></ion-icon>
</div>
<p class="paragraph">at anytime during the session</p>
</div>
<div class="qs-tile qs-tile__time">
<div class="qs-tile__title">
<h3 class="heading-tertiary--white">Your Class</h3>
</div>
<div class="qs-tile__icon-box">
<ion-icon name="checkmark-outline" class="qs-tile__icon"></ion-icon>
</div>
<p class="paragraph">Study with classmates and have an Academic Guide there to answer questions.</p>
</div>
<div class="qs-tile qs-tile__checkin">
<div class="qs-tile__title">
<h3 class="heading-tertiary--white">Check-in</h3>
</div>
<div class="qs-tile__icon-box">
<ion-icon name="watch-outline" class="qs-tile__icon"></ion-icon>
</div>
<p class="paragraph">at the Learning Hub front desk, <em>or register when signing onto Zoom for an Online Appointment.</em></p>
</div>
<div class="qs-tile qs-tile__format">
<div class="qs-tile__title qs-tile__title--big">
<h3 class="heading-tertiary--white">Online <br>or In-Person</h3>
</div>
<div class="qs-tile__icon-box">
<ion-icon name="desktop-outline" class="qs-tile__icon" id="qs-instruct"></ion-icon>
</div>
<p class="paragraph">session formats are available</p>
</div>
</div>
<div class="qs-instruct u-margin-bottom-medium">
<div class="qs-instruct__box">
<h3 class="heading-tertiary u-margin-bottom-small">
1. Click on your subject
</h3>
</div>
<div class="qs-instruct__box">
<ion-icon name="arrow-down-outline" class="qs-instruct__box--icon"></ion-icon>
</div>
<div class="qs-instruct__box">
<h3 class="heading-tertiary u-margin-bottom-small">
2. Search for your course
</h3>
</div>
<div class="qs-instruct__box">
<ion-icon name="arrow-forward-outline" class="qs-instruct__box--icon"></ion-icon>
</div>
<div class="qs-instruct__box">
<h3 class="heading-tertiary u-margin-bottom-small">
3. Find a session!
</h3>
</div>
</div>
<div class="btn-box u-margin-bottom-medium">
<!-- <a href="#popup-courses__bio" class="btn-colorShadow btn-colorShadow__gold">Biology</a> -->
<a href="#popup-courses__chem" class="btn-colorShadow btn-colorShadow__gold">Chemistry</a>
<!-- <a href="#popup-courses__phys" class="btn-colorShadow btn-colorShadow__gold">Physics</a> -->
<!-- <a href="#popup-courses__eac" class="btn-colorShadow btn-colorShadow__gold">Engineering and Computing</a> -->
<!-- <a href="#popup-courses__pbhl" class="btn-colorShadow btn-colorShadow__gold">Public Health</a> -->
<!-- <a href="#popup-courses__pmus" class="btn-colorShadow btn-colorShadow__green">Music</a> -->
<!-- <a href="#popup-courses__psych" class="btn-colorShadow btn-colorShadow__green">Psychology</a> -->
<!-- <a href="#popup-courses__phil" class="btn-colorShadow btn-colorShadow__green">Philosophy</a> -->
<!-- <a href="#popup-courses__modLang" class="btn-colorShadow btn-colorShadow__green">Modern Languages</a> -->
<!-- <a href="#popup-courses__acct" class="btn-colorShadow btn-colorShadow__pink">Accounting</a> -->
<!-- <a href="#popup-courses__sod" class="btn-colorShadow btn-colorShadow__pink">Statistics for other Disciplines</a> -->
</div>
<div class="qs-instruct__box">
<h3 class="heading-tertiary u-margin-bottom-small">
4. Navigate Sign-Up / Drop-In
</h3>
</div>
<div class="qs-instruct__box u-margin-bottom-small">
<ion-icon name="arrow-down-outline" class="qs-instruct__box--icon qs-instruct__box--icon--teal"></ion-icon>
</div>
<div class="qs-instruct__box">
<a href="https://ucdenver.campus.eab.com/capabilities#/my/appointment-new" class="btn-colorShadow btn-colorShadow__teal">Navigate Sign-Up</a>
<!-- ####################### -->
<!-- FOOTER NOTE -->
<!-- ####################### -->
<!-- <p>* Sign-up for some courses is only available through February 6 at this time. Sign-up for times later in the semester will open soon. *</p> -->
</div>
<!-- <div class="footnote u-center-text">
<h3 class="heading-tertiary__green">**No services Sun Nov 21 - Sat Nov 27 for fall break**</h3>
</div> -->
</div>
</section>
<!--
End of Question Session Interface
-->
<!-- ________________________________________________________________________________________________________________________________________________________________________________________________-->
<!-- __________________________________________________________________________________________ POPUPS ______________________________________________________________________________________-->
<!-- ________________________________________________________________________________________________________________________________________________________________________________________________-->
<!--
------------------------------------------------------------
Instructions for copying this code over to Sitefinity:
------------------------------------------------------------
1. Make all of the changes to the original code (this code, edited in VSCode and updated via a GitHub branch)
3. Right click on this HTML page and find the "Open with live server" button. Use this live server to check that your changes look correct and that nothing else appears broken
4. Copy ALL of the sessions, not just the session you are editing
a. I place my cursor above the "COURSE LIST POPUPS" comment below
b. Scroll down to the bottom of this HTML page
c. Hold the Shift button and click below the Other Courses popup and above the "</main>" tag to select all of the session schedules
d. Copy the selected code
e. Navigate to Sitefinity and edit the Peer To Peer page
f. Find the content block at the bottom of the page (the block that looks empty above the footer block)
g. Click "edit"
h. Click the "HTML" button in the upper right of the content block edit popup
i. Select all of the code in that block (CMD/Control + A) and paste the copied code over the old code to replace the old content
5. Use the preview button (upper left side of the Sitefinity edit window) to ensure your changes appear and nothing else is broken
6. Publish the page. I also recommend opening the live page (www.ucdenver.edu/learning-resources-center/peer-to-peer) to check that your changes are actually live
-->
<!-- UNDERSTANDING DOCUMENTATION FOR DUPLICATE SESSIONS
This is the note attached to all duplicate sessions:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
FIXME: THIS SESSION IS A DUPLICATE!
V1 = (name of popup/course divider (if applicable)/and name of course)
V2 = (name of popup/course divider (if applicable)/and name of course)
----------------------------------------------------------------------
The note features a directory of all version of the session above it. The directory is read from left to right, denotes the popup, course divider, and the name of the course.-->
<!-- UNDERSTANDING INDIVIDUAL SESSION FORMATS
whenever you see a string (text that is visible on the website) inside of this bracketing system ${insert string here}, use that string and replace the entire variable (${}, and the filler text) with the requested information.
ex: "Hosted by: ${insert AG's name here}" -> "Hosted by: Caleb Theil"
This is how sessions in the AG Schedule are formatted for SP22:
<tr class="zoom-session" title="${Course Name}">
<td>Hosted by: ${Academic Guide's Name}</td>
<td>${Insert Day of Week and Time (time format: 00:00a/p)}</td>
<td><a href="${Academic Guide's Zoom Link}" title="${Academic Guide's Name}" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
------------------------------------
BREAKING DOWN THE FORMATTING CHOICES
------------------------------------
<tr class="zoom-session" title="${course name}"> tr means table row, the class is used to style the row as a zoom session, in-person session, or a cancelled session. the title attribute allows the student to hover the row and see the course that the session is associated with. This reduces the redundancy of the course divider above and the session.
<td>Hosted by: ${academic guide's name}</td> the 1st td = the first cell of this rwo of the table. The academic guide's name is listed here.
<td>${Insert Day of Week and Time (time format: 00:00a/p)}</td> the 2nd <td
-->
<!-- vvv BEGIN TO COPY CODE HERE vvv -->
<!------------------------------------------COURSE LIST POPUPS------------------------------------------------------>
<!-- ---------- -->
<!-- ACCOUNTING -->
<!-- ---------- -->
<div class="popup" id="popup-courses__acct">
<div class="popup__content popup__content-sl">
<a href="#qs-instruct" class="popup__close">×</a>
<div class="u-center-text">
<h2 class="heading-secondary__pe u-margin-bottom-small">Accounting</h2>
</div>
<h3 class="heading-tertiary">Guided Study Groups:</h3>
<div class="table-box">
<table class="popup__table--courses">
<tr>
<th>Financial Accounting and Financial Statement Analysis</th>
<th></th>
<th></th>
</tr>
<!-- <tr class="inPerson-session" >
<td>Course Session</td>
<td>Day/Time</td>
<td>* In Person</td>
</tr> -->
<tr class="inPerson-session" title=" Financial Accounting and Financial Statement Analysis">
<td>Hosted by: Fatima</td>
<td>Tuesday 2 - 3 pm</td>
<td>*In-Person</td>
</tr>
<tr class="inPerson-session" title="Financial Accounting and Financial Statement Analysis">
<td>Hosted by: Fatima</td>
<td>Thursday 3 - 4 pm</td>
<td>*In-Person</td>
</tr>
<!-- ------------- ZOOM SESSIONS ---------------- -->
<tr class="zoom-session" title="Financial Accounting and Financial Statement Analysis">
<td>Hosted by: Fatima</td>
<td>Monday 3:30 - 4:30 pm</td>
<td><a href="https://ucdenver.zoom.us/j/93311361435?pwd=WFhMWXFBeFdrZlJ1UThQSkZpSm4xQT09" title="Fatima Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
<tr class="zoom-session" title="Financial Accounting and Financial Statement Analysis">
<td>Hosted by: Fatima</td>
<td>Thursday 2 - 3 pm</td>
<td><a href="https://ucdenver.zoom.us/j/93311361435?pwd=WFhMWXFBeFdrZlJ1UThQSkZpSm4xQT09" title="Fatima Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
<tr class="zoom-session" title="Financial Accounting and Financial Statement Analysis">
<td>Hosted by: Fatima</td>
<td>Friday 11 am - 12 pm</td>
<td><a href="https://ucdenver.zoom.us/j/93311361435?pwd=WFhMWXFBeFdrZlJ1UThQSkZpSm4xQT09" title="Fatima Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
</table>
</div>
<h4 class="heading-quaternary"><span class="zoom-session-span"> Zoom sessions are marked with this color</span> , <span class="inPerson-session-span">in-person sessions are marked with this color</span>. <span class="cancel-session-span">Canceled sessions appear like this.</span><br>*Enter at 12th and Larimer for in person sessions<br>**Zoom log-in requires your CU Denver Student account.</h4>
<h4 class="heading-quaternary u-margin-bottom-small">Times are subject to change throughout the semester. We will adjust based on student demand and Academic Guide availability</h4>
</div>
</div>
<!-- ---------- -->
<!-- Physics -->
<!-- ---------- -->
<div class="popup" id="popup-courses__phys">
<div class="popup__content popup__content-sl">
<a href="#qs-instruct" class="popup__close">×</a>
<div class="u-center-text">
<h2 class="heading-secondary__pe u-margin-bottom-small">Physics</h2>
</div>
<h3 class="heading-tertiary">Guided Study Groups:</h3>
<div class="table-box">
<table class="popup__table--courses">
<tr>
<th>College Physics I </th>
<th></th>
<th></th>
</tr>
<!-- ------------- ZOOM SESSIONS ---------------- -->
<tr class="cancel-session" title="College Physics I">
<td> × CANCELLED WEDNESDAY 5/4 <br>Hosted by: Jennifer</td>
<td>Monday 4 - 5 pm </td>
<td><a href="https://ucdenver.zoom.us/j/98138253144?pwd=MjRLVVVrUi9US083eHo0SGRMQjdOUT09" title="Jennifer Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
<tr>
<th>College Physics II </th>
<th></th>
<th></th>
</tr>
<!-- ------------- ZOOM SESSIONS ---------------- -->
<tr class="zoom-session" title="College Physics II">
<td>Hosted by: Jennifer</td>
<td>Monday 3 - 4 pm </td>
<td><a href="https://ucdenver.zoom.us/j/98138253144?pwd=MjRLVVVrUi9US083eHo0SGRMQjdOUT09" title="Jennifer Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
<tr>
<th>General Physics I </th>
<th></th>
<th></th>
</tr>
<tr class="inPerson-session" title="General Physics I">
<td>Hosted by: Jennifer</td>
<td>Wednesday 1 - 2 pm </td>
<td>*In-Person Session</td>
</tr>
<tr class="inPerson-session" title="General Physics I">
<td>Hosted by: Jennifer</td>
<td> Wednesday 4 - 5 pm </td>
<td>*In-Person Session</td>
</tr>
<!--^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
FIXME: THIS SESSION IS A DUPLICATE!
V1 = (chem/found and engr chem/chem for engr)
V2 = (chem/gen chem/gen chem 1)
----------------------------------------------------->
<!-- ------------- ZOOM SESSIONS ---------------- -->
<tr class="zoom-session" title="General Physics I">
<td>Hosted by: Jennifer</td>
<td>Thursday 1 - 2 pm </td>
<td><a href="https://ucdenver.zoom.us/j/98138253144?pwd=MjRLVVVrUi9US083eHo0SGRMQjdOUT09" title="Jennifer Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
<tr>
<th>General Physics II </th>
<th></th>
<th></th>
</tr>
<tr class="inPerson-session" title="General Physics II">
<td>Hosted by: Jennifer</td>
<td>Wednesday 2 - 3 pm </td>
<td>*In-Person Session</td>
</tr>
<tr class="inPerson-session" title="General Physics II">
<td>Hosted by: Jennifer</td>
<td> Wednesday 4 - 5 pm </td>
<td>*In-Person Session</td>
</tr>
<!--^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
FIXME: THIS SESSION IS A DUPLICATE!
V1 = (chem/found and engr chem/chem for engr)
V2 = (chem/gen chem/gen chem 1)
----------------------------------------------------->
<!-- ------------- ZOOM SESSIONS ---------------- -->
<tr class="zoom-session" title="General Physics II">
<td>Hosted by: Jennifer</td>
<td>Thursday 12 - 1 pm </td>
<td><a href="https://ucdenver.zoom.us/j/98138253144?pwd=MjRLVVVrUi9US083eHo0SGRMQjdOUT09" title="Jennifer Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
</table>
</div>
<h4 class="heading-quaternary"><span class="zoom-session-span"> Zoom sessions are marked with this color</span> , <span class="inPerson-session-span">in-person sessions are marked with this color</span>. <span class="cancel-session-span">Canceled sessions appear like this.</span><br>*Enter at 12th and Larimer for in person sessions<br>**Zoom log-in requires your CU Denver Student account.</h4>
<h4 class="heading-quaternary u-margin-bottom-small">Times are subject to change throughout the semester. We will adjust based on student demand and Academic Guide availability</h4>
</div>
</div>
<!-- ---------- -->
<!-- PHILOSOPHY -->
<!-- ---------- -->
<div class="popup" id="popup-courses__phil">
<div class="popup__content popup__content-sl">
<a href="#qs-instruct" class="popup__close">×</a>
<div class="u-center-text">
<h2 class="heading-secondary__pe u-margin-bottom-small">Philosophy</h2>
</div>
<h3 class="heading-tertiary">Guided Study Groups:</h3>
<div class="table-box">
<table class="popup__table--courses">
<tr>
<th>Introduction to Philosophy</th>
<th></th>
<th></th>
</tr>
<!-- <tr class="inPerson-session">
<td>Course Session</td>
<td>Day/Time</td>
<td>* In Person</td>
</tr> -->
<tr class="inPerson-session" title="Introduction to Philosophy">
<td>Hosted by: Eli</td>
<td>Monday 4 - 5 pm</td>
<td>*In-Person Session</td>
</tr>
<!-- ------------- ZOOM SESSIONS ---------------- -->
<tr class="zoom-session" title="Introduction to Philosophy">
<td>Hosted by: Eli</td>
<td>Tuesday 1-2 pm</td>
<td><a href="https://ucdenver.zoom.us/j/8801674772?pwd=djNHV05nSzNyMWZZQkN1NFJPRHJiZz09" title="Eli Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
<!-- <tr class="zoom-session">
<td>Introduction to Philosophy</td>
<td>Wednesday 1-2 pm</td>
<td><a href="https://ucdenver.zoom.us/j/93546423998?pwd=MDh2eTh4ZXIrZHdEK3FBcDBxNnNmdz09" title="Eli Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr> -->
<tr>
<th>Introduction to Ethical Reasoning</th>
<th></th>
<th></th>
</tr>
<tr class="inPerson-session" title="Introduction to Ethical Reasoning">
<td>Hosted by: Eli</td>
<td>Monday 2 - 3 pm</td>
<td>*In-Person Session</td>
</tr>
<!-- ------------- ZOOM SESSIONS ---------------- -->
<tr>
<th>Logic, Language, and Scientific Reasoning</th>
<th></th>
<th></th>
</tr>
<!-- <tr class="inPerson-session">
<td>Course Session</td>
<td>Day/Time</td>
<td>* In Person</td>
</tr> -->
<!-- ------------- ZOOM SESSIONS ---------------- -->
<tr class="zoom-session" title="Logic, Language, and Scientific Reasoning">
<td>Hosted by: Eli</td>
<td>Tuesday 12 - 1 pm</td>
<td><a href="https://ucdenver.zoom.us/j/8801674772?pwd=djNHV05nSzNyMWZZQkN1NFJPRHJiZz09" title="Eli Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
<tr class="zoom-session" title="Logic, Language, and Scientific Reasoning">
<td>Hosted by: Eli</td>
<td>Tuesday 7 - 8 pm</td>
<td><a href="https://ucdenver.zoom.us/j/8801674772?pwd=djNHV05nSzNyMWZZQkN1NFJPRHJiZz09" title="Eli Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
<!-- <tr class="zoom-session">
<td>Logic Language and Scientific Reasoning</td>
<td>Wednesday 12-1 pm</td>
<td><a href="https://ucdenver.zoom.us/j/93546423998?pwd=MDh2eTh4ZXIrZHdEK3FBcDBxNnNmdz09" title="Eli Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr> -->
<tr>
<th>Modern Philosophy</th>
<th></th>
<th></th>
</tr>
<tr class="inPerson-session" title="Modern Philosophy">
<td>Hosted by: Eli</td>
<td>Monday 3 - 4 pm</td>
<td>*In-Person Session</td>
</tr>
<!-- ------------- ZOOM SESSIONS ---------------- -->
<tr class="zoom-session" title="Modern Philosophy">
<td>Hosted by: Eli</td>
<td>Tuesday 6 - 7 pm</td>
<td><a href="https://ucdenver.zoom.us/j/8801674772?pwd=djNHV05nSzNyMWZZQkN1NFJPRHJiZz09" title="Eli Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
</table>
</div>
<h4 class="heading-quaternary"><span class="zoom-session-span"> Zoom sessions are marked with this color</span> , <span class="inPerson-session-span">in-person sessions are marked with this color</span>. <span class="cancel-session-span">Canceled sessions appear like this.</span><br>*Enter at 12th and Larimer for in person sessions<br>**Zoom log-in requires your CU Denver Student account.</h4>
<h4 class="heading-quaternary u-margin-bottom-small">Times are subject to change throughout the semester. We will adjust based on student demand and Academic Guide availability</h4>
</div>
</div>
<!-- ---------- -->
<!-- PUBLIC HEALTH -->
<!-- ---------- -->
<div class="popup" id="popup-courses__pbhl">
<div class="popup__content popup__content-sl">
<a href="#qs-instruct" class="popup__close">×</a>
<div class="u-center-text">
<h2 class="heading-secondary__pe u-margin-bottom-small">Public Health</h2>
</div>
<h3 class="heading-tertiary">Guided Study Groups:</h3>
<div class="table-box">
<table class="popup__table--courses">
<tr>
<th>Introduction to Epidemiology</th>
<th></th>
<th></th>
</tr>
<tr class="inPerson-session" title="Introduction to Epidemiology">
<td>Hosted by: Henley</td>
<td>Monday 1 - 3 pm</td>
<td>* In Person</td>
</tr>
<!-- ------------- ZOOM SESSIONS ---------------- -->
<!-- <tr class="zoom-session">
<td>Introduction to Epidemiology</td>
<td>Monday 1 - 3 pm</td>
<td><a href="https://ucdenver.zoom.us/j/99991739337?pwd=YXFQMFJienpLeDdsTTUvcEN4azlDZz09" title= "Henley Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr> -->
<tr class="zoom-session" title="Introduction to Epidemiology">
<td>Hosted by: Henley</td>
<td>Wednesday 1 - 3 pm</td>
<td><a href="https://ucdenver.zoom.us/j/99991739337?pwd=YXFQMFJienpLeDdsTTUvcEN4azlDZz09" title= "Henley Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
<tr class="zoom-session" title="Introduction to Epidemiology">
<td>Hosted by: Henley</td>
<td>Thursday 4 - 6 pm</td>
<td><a href="https://ucdenver.zoom.us/j/99991739337?pwd=YXFQMFJienpLeDdsTTUvcEN4azlDZz09" title= "Henley Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
</table>
</div>
<h4 class="heading-quaternary"><span class="zoom-session-span"> Zoom sessions are marked with this color</span> , <span class="inPerson-session-span">in-person sessions are marked with this color</span>. <span class="cancel-session-span">Canceled sessions appear like this.</span><br>*Enter at 12th and Larimer for in person sessions<br>**Zoom log-in requires your CU Denver Student account.</h4>
<h4 class="heading-quaternary u-margin-bottom-small">Times are subject to change throughout the semester. We will adjust based on student demand and Academic Guide availability</h4>
</div>
</div>
<!-- ---------- -->
<!-- Music -->
<!-- ---------- -->
<div class="popup" id="popup-courses__pmus">
<div class="popup__content popup__content-sl">
<a href="#qs-instruct" class="popup__close">×</a>
<div class="u-center-text">
<h2 class="heading-secondary__pe u-margin-bottom-small">Music</h2>
</div>
<h3 class="heading-tertiary">Guided Study Groups:</h3>
<div class="table-box">
<table class="popup__table--courses">
<tr>
<th>Music Theory I & II</th>
<th></th>
<th></th>
</tr>
<!-- ------------- ZOOM SESSIONS ---------------- -->
<tr class="zoom-session" title="Music Theory II">
<td>Hosted by: Hunter</td>
<td>Tuesday 5 - 6 pm</td>
<td><a href="https://ucdenver.zoom.us/j/98236811071?pwd=Z2FwekFtdXZrZDJPQjNPcGY3b05ZZz09" title= "Hunter Zoom Link" class="popup__table--courses--link"> ** Online - Zoom Session</a></td>
</tr>
<th>Ear Training/Sight Singing I & II</th>
<th></th>
<th></th>
<!-- ------------- ZOOM SESSIONS ---------------- -->
<tr class="zoom-session" title= "Ear Training/Sight Singing II">
<td>Hosted by: Hunter</td>
<td>Wednesday 3 - 3:30 pm </td>
<td><a href="https://ucdenver.zoom.us/j/93054277468?pwd=aWhDeFlnN3NVZFJEbzViR09LZ25jZz09" title= "Hunter Zoom Link" class="popup__table--courses--link"> ** Online - Zoom Session</a></td>
</tr>
<th>Piano I & II</th>
<th></th>
<th></th>
<tr class="inPerson-session" title= "Piano I & II">
<td>Hosted by: Hunter</td>
<td>Tuesday 2:30 - 3:30 pm </td>
<td>*In-Person Session</td>
</tr>
<tr class="inPerson-session" title= "Piano I & II">
<td>Hosted by: Hunter</td>
<td>Wednesday 2 - 3 pm </td>
<td>*In-Person Session</td>
</tr>
<tr class="zoom-session" title= "Piano I & II">
<td>Hosted by: Hunter</td>
<td>Wednesday 2 - 3 pm </td>
<td><a href="https://ucdenver.zoom.us/j/93054277468?pwd=aWhDeFlnN3NVZFJEbzViR09LZ25jZz09" title= "Hunter Zoom Link" class="popup__table--courses--link"> ** Online - Zoom Session</a></td>
<!-- <td>*In-Person Session</td> -->
</tr>
<tr class="inPerson-session" title= "Piano I & II">
<td>Hosted by: Hunter</td>
<td>Thursday 2:30 - 3:30 pm </td>
<td>*In-Person Session</td>
</tr>
</table>
</div>
<h4 class="heading-quaternary"><span class="zoom-session-span"> Zoom sessions are marked with this color</span> , <span class="inPerson-session-span">in-person sessions are marked with this color</span>. <span class="cancel-session-span">Canceled sessions appear like this.</span><br>*Enter at 12th and Larimer for in person sessions<br>**Zoom log-in requires your CU Denver Student account.</h4>
<h4 class="heading-quaternary u-margin-bottom-small">Times are subject to change throughout the semester. We will adjust based on student demand and Academic Guide availability</h4>
</div>
</div>
<!-- ---------- -->
<!-- BIOL -->
<!-- ---------- -->
<div class="popup" id="popup-courses__bio">
<div class="popup__content popup__content-sl">
<a href="#qs-instruct" class="popup__close">×</a>
<div class="u-center-text">
<h2 class="heading-secondary__pe u-margin-bottom-small">Biology</h2>
</div>
<h3 class="heading-tertiary">Guided Study Groups:</h3>
<div class="table-box">
<table class="popup__table--courses">
<tr>
<!-- BIOL 2020 - Molecules to Cells (Gen Bio) (3 Credits) -->
<th>Molecules to Cells (Gen Bio)</th>
<th></th>
<th></th>
</tr>
<tr class="zoom-session" title="Molecules to Cells (Gen Bio)">
<td>Hosted by: Andrea</td>
<td>Monday 7:30 - 9 pm</td>
<td><a href="https://ucdenver.zoom.us/j/91368744088?pwd=bDZHRmFoQUdOSUVYWmFBQ2VOSVJxQT09" title="Andrea Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
<tr class="zoom-session" title="Molecules to Cells (Gen Bio)">
<td>Hosted by: Andrea</td>
<td>Tuesday 8-9 pm</td>
<td><a href="https://ucdenver.zoom.us/j/91368744088?pwd=bDZHRmFoQUdOSUVYWmFBQ2VOSVJxQT09" title="Andrea Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
</table>
</div>
<h4 class="heading-quaternary"><span class="zoom-session-span"> Zoom sessions are marked with this color</span> , <span class="inPerson-session-span">in-person sessions are marked with this color</span>. <span class="cancel-session-span">Canceled sessions appear like this.</span><br>*Enter at 12th and Larimer for in person sessions<br>**Zoom log-in requires your CU Denver Student account.</h4>
<h4 class="heading-quaternary u-margin-bottom-small">Times are subject to change throughout the semester. We will adjust based on student demand and Academic Guide availability</h4>
</div>
</div>
<!-- ---------- -->
<!-- LANG -->
<!-- ---------- -->
<div class="popup" id="popup-courses__modLang">
<div class="popup__content popup__content-sl">
<a href="#qs-instruct" class="popup__close">×</a>
<div class="u-center-text">
<h2 class="heading-secondary__pe u-margin-bottom-small">Spanish</h2>
</div>
<h3 class="heading-tertiary">Guided Study Groups:</h3>
<div class="table-box">
<table class="popup__table--courses">
<th>French Language I, II, & III</th>
<th></th>
<th></th>
<tr class="zoom-session" title= "French Language I, French Language II, French Language III ">
<td>Hosted by: Jennifer </td>
<td>Monday 2 - 3 pm</td>
<td><a href="https://ucdenver.zoom.us/j/98138253144?pwd=MjRLVVVrUi9US083eHo0SGRMQjdOUT09" title= "Jennifer Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
<!-- <td>*In-Person Session</td> -->
</tr>
<!-- ------------- ZOOM SESSIONS ---------------- -->
<!-- <tr class="zoom-session" title= "French Language I, French Language II, French Language III ">
<td>Hosted by: Jennifer</td>
<td>Monday 2 - 3 pm</td>
<td><a href="https://ucdenver.zoom.us/j/98138253144?pwd=MjRLVVVrUi9US083eHo0SGRMQjdOUT09" title= "Jennifer Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr> -->
<th>Spanish Language I & II</th>
<th></th>
<th></th>
<tr class="zoom-session" title= "Beginning Spanish I & II">
<td>Hosted by: Hunter</td>
<td>Monday 2 - 3 pm </td>
<td><a href="https://ucdenver.zoom.us/j/98236811071?pwd=Z2FwekFtdXZrZDJPQjNPcGY3b05ZZz09" title= "Hunter Zoom Link" class="popup__table--courses--link"> ** Online - Zoom Session</a></td>
</tr>
<tr class="zoom-session" title= "Beginning Spanish I & II">
<td>Hosted by: Hunter</td>
<td>Monday 5:20 - 6:20 pm </td>
<td><a href="https://ucdenver.zoom.us/j/98236811071?pwd=Z2FwekFtdXZrZDJPQjNPcGY3b05ZZz09" title= "Hunter Zoom Link" class="popup__table--courses--link"> ** Online - Zoom Session</a></td>
</tr>
<tr class="zoom-session" title= "Beginning Spanish I & II">
<td>Hosted by: Hunter</td>
<td>Tuesday 3:30 - 4:30 pm </td>
<td><a href="https://ucdenver.zoom.us/j/98236811071?pwd=Z2FwekFtdXZrZDJPQjNPcGY3b05ZZz09" title= "Hunter Zoom Link" class="popup__table--courses--link"> ** Online - Zoom Session</a></td>
<tr class="zoom-session" title= "Beginning Spanish I & II">
<td>Hosted by: Hunter</td>
<td>Wednesday 1 - 2 pm </td>
<td><a href="https://ucdenver.zoom.us/j/98236811071?pwd=Z2FwekFtdXZrZDJPQjNPcGY3b05ZZz09" title= "Hunter Zoom Link" class="popup__table--courses--link"> ** Online - Zoom Session</a></td>
</tr>
</table>
</div>
<h4 class="heading-quaternary"><span class="zoom-session-span"> Zoom sessions are marked with this color</span> , <span class="inPerson-session-span">in-person sessions are marked with this color</span>. <span class="cancel-session-span">Canceled sessions appear like this.</span><br>*Enter at 12th and Larimer for in person sessions<br>**Zoom log-in requires your CU Denver Student account.</h4>
<h4 class="heading-quaternary u-margin-bottom-small">Times are subject to change throughout the semester. We will adjust based on student demand and Academic Guide availability</h4>
</div>
</div>
<!-- ---------- -->
<!-- ENGR + COMP -->
<!-- ---------- -->
<div class="popup" id="popup-courses__eac">
<div class="popup__content popup__content-sl">
<a href="#qs-instruct" class="popup__close">×</a>
<div class="u-center-text">
<h2 class="heading-secondary__pe u-margin-bottom-small">Engineering and Computing</h2>
</div>
<h3 class="heading-tertiary">Guided Study Groups:</h3>
<div class="ag-popup__tabs">
<!-- ---------- -->
<!-- COMP SCI-->
<!-- ---------- -->
<input type="radio" class="ag-popup__tabs--radio" name="ag-popup__engr-tabs" id="ag-popup__csci-tab" checked>
<label for="ag-popup__csci-tab" class="ag-popup__tabs--label">Computer Science</label>
<div class="ag-popup__tabs--content">
<div class="table-box">
<table class="popup__table--courses">
<tr>
<th>Fundamentals of Computing</th>
<th></th>
<th></th>
</tr>
<tr class="inPerson-session" title="Fundamentals of Computing">
<td>Hosted by: Manharsh</td>
<td>Tuesday 2:30 - 4 pm </td>
<td>*In-Person Session</td>
</tr>
<!-- ------------- ZOOM SESSIONS ---------------- -->
<tr class="zoom-session" title="Fundamentals of Computing">
<td>Hosted by: Zoe</td>
<td>Monday 10 am - 12 pm </td>
<td><a href="https://ucdenver.zoom.us/j/99317162379?pwd=dXhVZDZzTCtNaU1rZGR3OHRxa2lsQT09" title= "Zoe Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
<tr>
<tr>
<th>Logic Design</th>
<th></th>
<th></th>
</tr>
<tr class="zoom-session"title="Logic Design">
<td>Hosted by: Manharsh</td>
<td>Thursday 2:30 - 4 pm </td>
<td><a href="https://ucdenver.zoom.us/j/92310857800?pwd=VGsxQ3Mrd3QwdGRSQnJORlk5SldUQT09" title= "Manharsh Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
<tr>
<th>Object Oriented Programming</th>
<th></th>
<th></th>
</tr>
<tr class="zoom-session" title= "Object Orientated Programming">
<td>Hosted by: Ravisher</td>
<td>Monday 10 am - 11:30 am </td>
<td><a href="https://ucdenver.zoom.us/j/99238179049?pwd=aWZ0b09vQS9vOGVGV29QbjhaWlhFZz09" title= "Manharsh Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
<!-- ------------- ZOOM SESSIONS ---------------- -->
<!-- <tr class="zoom-session">
<td>Object Oriented Programming</td>
<td>Monday 10 am - 11:30 am </td>
<td><a href="https://ucdenver.zoom.us/j/99238179049?pwd=aWZ0b09vQS9vOGVGV29QbjhaWlhFZz09" title= "Ravisher Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr> -->
<tr class="zoom-session" title="Object Oriented Programming">
<td>Hosted by: Manharsh</td>
<td>Friday 12 - 1:30 pm </td>
<td><a href="https://ucdenver.zoom.us/j/92310857800?pwd=VGsxQ3Mrd3QwdGRSQnJORlk5SldUQT09" title= "Manharsh Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
<tr>
<th>Database System Concepts</th>
<th></th>
<th></th>
</tr>
<tr class="zoom-session" title="Database System Concepts">
<td>Hosted by: Ravisher</td>
<td>Friday 6:30 - 8 pm </td>
<td><a href="https://ucdenver.zoom.us/j/99238179049?pwd=aWZ0b09vQS9vOGVGV29QbjhaWlhFZz09" title= "Ravisher Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
<tr>
<th>Algorithms</th>
<th></th>
<th></th>
</tr>
<tr class="zoom-session" title="Algorithms">
<td>Hosted by: Ravisher</td>
<td>Wednesday 10 am - 11:30 am </td>
<td><a href="https://ucdenver.zoom.us/j/99238179049?pwd=aWZ0b09vQS9vOGVGV29QbjhaWlhFZz09" title= "Ravisher Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
<tr>
<th>Data Structures and Program Design</th>
<th></th>
<th></th>
</tr>
<tr class= "inPerson-session" title= "Data Structures and Program Design">
<td>Hosted by: Zoe</td>
<td>Monday 1 - 3 pm </td>
<td>*In-Person Session</td>
</tr>
<!-- ------------- ZOOM SESSIONS ---------------- -->
<!-- <tr class="zoom-session">
<td>Data Structures and Program Design</td>
<td>Monday 1 - 3 pm </td>
<td><a href="https://ucdenver.zoom.us/j/96475091205?pwd=ZFpHenNGR3IyTG5zai9JV09zNy9RQT09" title= "Zoe Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr> -->
<tr class="zoom-session" title="Data Structures and Program Design">
<td>Hosted by: Zoe</td>
<td>Tuesday 3:30 - 5 pm</td>
<td><a href="https://ucdenver.zoom.us/j/99317162379?pwd=dXhVZDZzTCtNaU1rZGR3OHRxa2lsQT09" title= "Zoe Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>
</table>
</div>
</div>
<!-- ---------- -->
<!-- MECH & CVEN -->
<!-- ---------- -->
<input type="radio" class="ag-popup__tabs--radio" name="ag-popup__engr-tabs" id="ag-popup__mech-cven-tab">
<label for="ag-popup__mech-cven-tab" class="ag-popup__tabs--label">MECH & CVEN</label>
<div class="ag-popup__tabs--content">
<div class="table-box">
<table class="popup__table--courses">
<tr>
<th>Statics/Analytical Mechanics 1</th>
<th></th>
<th></th>
</tr>
<tr class="inPerson-session" title="Statics/Analytical Mechanics 1">
<td>Hosted by: Magdalena</td>
<td>Wednesday 11 - 12:30 pm</td>
<td>*In-Person Session</td>
</tr>
<tr class="zoom-session" title="Statics/Analytical Mechanics 1">
<td>Hosted by: Magdalena</td>
<td>Tuesday 12 - 1:30 pm</td>
<td><a href="https://ucdenver.zoom.us/j/94476058618" title= "Magdalena Zoom Link" class="popup__table--courses--link">** Online - Zoom Session</a></td>
</tr>