-
Notifications
You must be signed in to change notification settings - Fork 0
/
responsive-header.html
719 lines (679 loc) · 30.2 KB
/
responsive-header.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Responsive Header with Accessible Mega Menu</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/local-responsive.css">
<link rel="stylesheet" href="css/responsive-header.css">
<script src="js/responsive-header.js"></script>
<script src="js/screen-reader-messaging.js"></script>
<script src="js/complex-tooltips.js"></script>
<script>
window.addEventListener('load', function(event) {
document.querySelector('#hours_location_select').addEventListener('change', function(evt) {
/* Load today's today's times */
// We fake it for this demo by hard-coding.
let times = {'bird': '9 a.m. - 5 p.m.', 'carnegie': '10 a.m. - 3 p.m.', 'arch': 'Closed' };
let new_time = document.getElementById('hours_location_today').innerText = times[evt.target.value];
// set a timeout so that the new selection is labeled
ScreenReaderMessenger.getMessenger().say("Today's hours are " + new_time);
});
});
</script>
</head>
<body>
<div hidden aria-hidden="true">
<svg aria-hidden="true" focusable="false" id="icons" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="icon-up-triangle" viewBox="0 0 100 65">
<g fill="currentColor">
<path d="M50 .503l14.142 14.142-49.497 49.497L.503 50z"/>
<path d="M50 .503L99.497 50 85.355 64.142 35.858 14.645z"/>
</g>
</symbol>
<symbol id="icon-down-triangle" viewBox="0 0 100 65">
<g fill="currentColor" transform="matrix(1 0 0 -1 0 65)">
<path d="M50 .503l14.142 14.142-49.497 49.497L.503 50z"/>
<path d="M50 .503L99.497 50 85.355 64.142 35.858 14.645z"/>
</g>
</symbol>
<symbol id="icon-menu" viewBox="0 0 100 90">
<g>
<path fill="currentColor" d="M5 5h90v20H5z"></path>
<path fill="currentColor" d="M5 35h90v20H5z"></path>
<path fill="currentColor" d="M5 65h90v20H5z"></path>
</g>
</symbol>
<symbol id="icon-person" viewBox="0 0 42.667 42.667">
<g fill="currentColor" fill-opacity="1" fill-rule="nonzero" stroke="none">
<path d="M10.667 24H32l5.333 5.333V40l-32-.023V29.333L10.667 24M30.667 12a9.333 9.333 0 0 0-9.334-9.333A9.333 9.333 0 0 0 12 12a9.333 9.333 0 1 0 18.667 0"/>
</g>
</symbol>
<symbol id="icon-feedback" viewBox="0 0 42.667 42.667">
<path fill="currentColor" fill-opacity="1" fill-rule="nonzero" stroke="none" d="M29.333 20.867a2 2 0 1 1 .001-4 2 2 0 0 1 0 4zm-8.036 0a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm-7.98 0a2 2 0 1 1-.001-4 2 2 0 0 1 0 4zm-6.65-15.35v21.332L12 32.183h12l6.667 6.484v-6.484H36V5.516H6.667"/>
</symbol>
<symbol id="icon-help" viewBox="0 0 42.667 42.667">
<path fill="currentColor" fill-opacity="1" fill-rule="nonzero" stroke="none" d="M23 23.023l-.154 2.612h-4.342l-.385-5.838c4.152-.807 5.725-2.422 5.725-4.188 0-1.73-1.42-2.69-3.38-2.69-2.151 0-4.38 1.267-5.227 1.959l-.92-4.803C15.47 9.191 17.738 8 21.233 8c4.15 0 8.263 2.306 8.263 7.224 0 4.341-3.114 6.57-6.495 7.8zm-2.344 11.644a3.426 3.426 0 0 1-3.42-3.42 3.427 3.427 0 0 1 3.42-3.422c1.92 0 3.458 1.539 3.458 3.422 0 1.882-1.537 3.42-3.458 3.42zm.677-32c-10.31 0-18.666 8.356-18.666 18.666S11.023 40 21.333 40 40 31.643 40 21.333c0-10.31-8.357-18.666-18.667-18.666"/>
</symbol>
<symbol id="icon-alert" viewBox="0 0 42.667 42.667">
<path fill="currentColor" fill-opacity="1" fill-rule="nonzero" stroke="none" d="M21.116 33.257c-1.628 0-2.929-1.302-2.929-2.897 0-1.594 1.301-2.896 2.929-2.896a2.903 2.903 0 0 1 2.897 2.896 2.903 2.903 0 0 1-2.897 2.897zm2.767-22.034L22.94 25.61h-3.677l-.912-14.386zm-2.537-8.556c-10.309 0-18.666 8.357-18.666 18.666C2.68 31.643 11.037 40 21.346 40c10.31 0 18.667-8.357 18.667-18.667 0-10.309-8.357-18.666-18.667-18.666"/>
</symbol>
<symbol id="icon-search" viewBox="0 0 115 115">
<path d="m44.973 4.1362a40 40 0 1 0 0 80 40 40 0 1 0 0-80zm0 10a30 30 0 1 1 0 60 30 30 0 1 1 0-60z" fill="currentColor"/>
<path d="m59.115 58.278a20 20 0 0 0 0-28.284" fill="none" stroke="currentColor" stroke-width="4"/>
<rect transform="rotate(-45 90.973 91.81)" x="85.973" y="69.864" width="10" height="43.892" fill="currentColor" />
</symbol>
<symbol id="icon-chat" viewBox="0 0 17.29 12.3">
<g transform="translate(-.73542 -.73542)" fill="currentColor">
<path d="m15.997 8.0616a0.52917 0.52917 0 1 1 2.63e-4 -1.0583 0.52917 0.52917 0 0 1 0 1.0583zm-2.1262 0a0.52917 0.52917 0 1 1 0-1.0583 0.52917 0.52917 0 0 1 0 1.0583zm-2.1114 0a0.52917 0.52917 0 1 1-2.66e-4 -1.0583 0.52917 0.52917 0 0 1 0 1.0583zm-1.7595-4.0614v5.6441l1.411 1.4113h3.175l1.764 1.7156v-1.7156h1.411v-7.0556h-7.761"/>
<path d="m2.764 5.0616a0.52917 0.52917 0 1 0-2.65e-4 -1.0583 0.52917 0.52917 0 0 0 0 1.0583zm2.1262 0a0.52917 0.52917 0 1 0 0-1.0583 0.52917 0.52917 0 0 0 0 1.0583zm2.1114 0a0.52917 0.52917 0 1 0 2.64e-4 -1.0583 0.52917 0.52917 0 0 0 0 1.0583zm1.7595-4.0614v5.6441l-1.411 1.4113h-3.175l-1.764 1.7156v-1.7156h-1.411v-7.0556h7.761"/>
</g>
</symbol>
<symbol id="icon-home" viewBox="0 0 37.333 37.333">
<path d="m37.333 20-18.667-20-18.666 20h5.333v17.333h9.333v-12h8v12h9.334v-17.333h5.333" fill="currentColor"/>
</symbol>
</svg>
</div>
<header role="banner" id="page_header">
<div id="skipnav_container" class="sr-only">
<a id="search_skip_link" href="#bento_search">
Skip to Search
</a>
<a id="chat_skip_link" href="#chat_trigger">
Skip to Chat
</a>
<a id="main_skip_link" href="#main">
Skip to main content
</a>
</div>
<div id="mobile_alert_link_container">
<a id="mobile_alert_link" class="active" href="">
<svg class="alert" focusable="false"><use href="#icon-alert"></use></svg>
Library Alerts <span>(90)</span>
</a>
</div>
<div id="logo_container" class="page-centered-content">
<a href="">
<img alt="Syracuse University Libraries" id="logo" src="assets/logo.svg">
</a>
</div>
<nav id="top_nav" aria-labelledby="top_nav_id">
<h2 class="sr-only">
<span id="top_nav_id">Main Site</span> Navigation
</h2>
<button id="main_nav_hamburger" class="hamburger-toggle" aria-expanded="false">
<svg focusable="false"><use href="#icon-menu"></use></svg>
<div>Menu</div>
</button>
<div id="audience_nav_container" aria-labelledby="audience_nav_name" role="region">
<div id="audience_nav" class="page-centered-content">
<span>Info For:</span>
<button class="nav-toggle" aria-expanded="false">
<span id="audience_nav_name">Services for...</span>
<svg focusable="false" class="icon down"><use href="#icon-down-triangle"></use></svg>
<svg focusable="false" class="icon up"><use href="#icon-up-triangle"></use></svg>
</button>
<ul role="list">
<li><a href="">Undergraduates</a></li>
<li><a href="">Graduates</a></li>
<li><a href="">Faculty</a></li>
<li><a href="">Alumni</a></li>
<li><a href="">Visitors</a></li>
<li><a href="">Donors</a></li>
</ul>
</div>
</div>
<div id="user_nav_container" role="region" aria-labelledby="user_nav_name">
<div id="user_nav" class="page-centered-content">
<button class="nav-toggle" aria-expanded="false">
<span id="user_nav_name">Help with...</span>
<svg focusable="false" class="icon down"><use href="#icon-down-triangle"></use></svg>
<svg focusable="false" class="icon up"><use href="#icon-up-triangle"></use></svg>
</button>
<ul role="list">
<li><a id="alert_link" class="active" href="">
<svg class="alert" focusable="false"><use href="#icon-alert"></use></svg>
Alert <span>(90)</span>
</a></li>
<li><a href="">
<svg class="help" focusable="false"><use href="#icon-help"></use></svg>
Get Help
</a></li>
<li><a href="">
<svg class="feedback" focusable="false"><use href="#icon-feedback"></use></svg>
Feedback
</a></li>
<li><a href="">
<svg class="accounts" focusable="false"><use href="#icon-person"></use></svg>
My Accounts
</a></li>
</ul>
</div>
</div>
<div id="main_nav_container">
<div id="main_nav" class="mega-menu page-centered-content" aria-labelledby="main_nav_name" role="region" data-menu-state="closed" data-responsive-width="800px">
<span id="main_nav_name" hidden>Library Site Menu</span>
<ul role="list">
<li>
<button aria-expanded="false" class="nav-toggle">
<span>Using the Libraries</span>
<svg focusable="false" class="icon down"><use href="#icon-down-triangle"></use></svg>
<svg focusable="false" class="icon up"><use href="#icon-up-triangle"></use></svg>
</button>
<div class="mega-sub-menu" tabindex="-1">
<div class="image-column">
<a href="">
<div>New Cat in Bird Library</div>
<img src="https://loremflickr.com/200/160/cat?random=473" alt="random cat"/>
</a>
</div>
<div class="image-column">
<a href="">
<div>New Late Fee Policy</div>
<img src="https://loremflickr.com/200/160/money?random=43" alt=""/>
</a>
</div>
<div class="text-column">
<div class="mega-sub-heading" id="mm_using_libs_services">Services</div>
<ul role="list" aria-labelledby="mm_using_libs_services">
<li><a href="">Borrow Laptops and Gear</a></li>
<li><a href="">Borrowing Process and Policies</a></li>
<li><a href="">Course Reserves</a></li>
<li><a href="">Interlibrary Loan</a></li>
<li><a href="">Delivery Services</a></li>
<li><a href="">Suggest a Title</a></li>
<li><a href="">University Records Management</a></li>
<li><a href="">Instructional Services</a></li>
</ul>
</div>
<div class="text-column">
<div class="mega-sub-heading" id="mm_using_libs_help">Help</div>
<ul role="list" aria-labelledby="mm_using_libs_help">
<li><a href="">Accessibility and Disability Services</a></li>
<li><a href="">Printing and Technology</a></li>
<li><a href="">Connecting from Off-Campus</a></li>
<li><a href="">Onsite Help at Bird Library</a></li>
<li><a href="">Trouble with a Resource</a></li>
<li><a href="">Help with Summon</a></li>
<li><a href="">Subject Librarians</a></li>
<li><a href="">Entreprenurial Help</a></li>
</ul>
</div>
</div>
</li>
<li>
<button aria-expanded="false" class="nav-toggle">
Spaces
<svg focusable="false" class="icon down"><use href="#icon-down-triangle"></use></svg>
<svg focusable="false" class="icon up"><use href="#icon-up-triangle"></use></svg>
</button>
<div class="mega-sub-menu" tabindex="-1">
<div class="image-column">
<a href="">
<div>Reserve a Study Room</div>
<img src="https://loremflickr.com/160/100/room?random=1" alt=""/>
</a>
</div>
<div class="text-column">
<ul role="list">
<li><a href="">Floor Maps</a></li>
<li><a href="">Service Desks</a></li>
<li><a href="">Pages Cafe</a></li>
<li><a href="">Study and Meeting Spaces</a></li>
<li><a href="">Faculty Research Commons</a></li>
</ul>
</div>
<div class="text-column">
<ul role="list">
<li><a href="">Bird Library</a></li>
<li><a href="">Carnegie Library</a></li>
<li><a href="">King + King Library</a></li>
<li><a href="">Special Collections Research Center</a></li>
<li><a href="">SU College of Law Library</a></li>
<li><a href="">Martin Luther King Jr. Library</a></li>
<li><a href="">F. Franklin Moon Library (ESF)</a></li>
</ul>
</div>
<div class="text-column">
<ul role="list">
<li><a href="">Center for Learning and Student Success (CLASS)</a></li>
<li><a href="">Syracuse Abroad@Bird</a></li>
<li><a href="">Syracuse Office of Undergraduate Research and Creative Engagement (SOURCE)</a></li>
<li><a href="">Digital Scholarship Space (DSS)</a></li>
<li><a href="">Center for Teaching and Learning Excellence</a></li>
<li><a href="">Blackstone LaunchPad</a></li>
</ul>
</div>
</div>
</li>
<li>
<button aria-expanded="false" class="nav-toggle">
Research
<svg focusable="false" class="icon down"><use href="#icon-down-triangle"></use></svg>
<svg focusable="false" class="icon up"><use href="#icon-up-triangle"></use></svg>
</button>
<div class="mega-sub-menu" tabindex="-1">
<div class="image-column">
<a href="">
<div>New Biology Database: Skeletons</div>
<img src="https://loremflickr.com/160/100/skeleton?random=1" alt="random skeleton"/>
</a>
</div>
<div class="image-column">
<a href="">
<div>Guide: Writing a Thesis Proposal</div>
<img src="https://loremflickr.com/160/100/book?random=1" alt="photo of many books"/>
</a>
</div>
<div class="text-column">
<div class="mega-sub-heading" id="mm_research_support">Research Support</div>
<ul role="list" aria-labelledby="mm_research_support">
<li><a href="">General Research</a></li>
<li><a href="">In-Depth Research</a></li>
<li><a href="">Research and Course Guides</a></li>
<li><a href="">Research Process</a></li>
<li><a href="">Subject Librarians</a></li>
<li><a href="">Special Collections Research Center</a></li>
</ul>
</div>
<div class="text-column">
<div class="mega-sub-heading" id="mm_research_services">Services and Tools</div>
<ul role="list" aria-labelledby="mm_research_services">
<li><a href="">Workshops</a></li>
<li><a href="">Citing Sources</a></li>
<li><a href="">Citation Management Tools</a></li>
<li><a href="">Experts@Syracuse</a></li>
<li><a href="">Research Data Services</a></li>
<li><a href="">Writing Center</a></li>
<li><a href="">Plagiarism Checker</a></li>
</ul>
</div>
</div>
</li>
<li>
<button aria-expanded="false" class="nav-toggle">
Collections
<svg focusable="false" class="icon down"><use href="#icon-down-triangle"></use></svg>
<svg focusable="false" class="icon up"><use href="#icon-up-triangle"></use></svg>
</button>
<div class="mega-sub-menu" tabindex="-1">
<div class="text-column">
<div class="mega-sub-heading" id="collections_special">Special Collections</div>
<ul role="list" aria-labelledby="collections_special">
<li><a href="">Collection Areas</a></li>
<li><a href="">Digital Collections</a></li>
<li><a href="">Pan Am 103</a></li>
<li><a href="">University Archives</a></li>
<li><a href="">Search the Collections</a></li>
</ul>
</div>
<div class="text-column">
<div class="mega-sub-heading" id="collections_digital">Digital Library</div>
<ul role="list" aria-labelledby="collections_digital">
<li><a href="">Digital Collections Repository</a></li>
<li><a href="">SURFACE Institutional Repository</a></li>
<li><a href="">Digital Exhibits</a></li>
</ul>
</div>
<div class="text-column double">
<div class="mega-sub-heading" id="collections_general">General</div>
<ul role="list" aria-labelledby="collections_general">
<li><a href="">eBooks</a></li>
<li><a href="">Journals</a></li>
<li><a href="">Databases</a></li>
<li><a href="">Videos and Film</a></li>
<li><a href="">Maps and Government Information</a></li>
<li><a href="">Music Scores and Sheet Music</a></li>
<li><a href="">Newspapers</a></li>
<li><a href="">HathiTrust</a></li>
</ul>
</div>
</div>
</li>
<li>
<button aria-expanded="false" class="nav-toggle">
About
<svg focusable="false" class="icon down"><use href="#icon-down-triangle"></use></svg>
<svg focusable="false" class="icon up"><use href="#icon-up-triangle"></use></svg>
</button>
<div class="mega-sub-menu" tabindex="-1">
<div class="image-column">
<a href="">
<div>Meet the New Librarians</div>
<img src="https://loremflickr.com/180/100/kittens?random=4" alt="random cats"/>
</a>
</div>
<div class="image-column">
<a href="">
<div>Staff Pet of the Month</div>
<img src="https://loremflickr.com/150/150/dog?random=5" alt="random dog"/>
</a>
</div>
<div class="text-column double">
<ul role="list">
<li><a href="">Policies and Procedures</a></li>
<li><a href="">Strategic Plan</a></li>
<li><a href="">Publications</a></li>
<li><a href="">Blog</a></li>
<li><a href="">Staff Directory</a></li>
<li><a href="">Equity, Diversity, Accessibility, and Inclusion</a></li>
<li><a href="">News</a></li>
<li><a href="">Events</a></li>
<li><a href="">Exhibitions</a></li>
<li><a href="">Job Opportunities</a></li>
<li><a href="">Give to the Libraries</a></li>
<li><a href="">SU Press</a></li>
<li><a href="">Federal Depository Library Program (FDLP)</a></li>
</ul>
</div>
</div>
</li>
</ul>
</div><!-- end main_nav -->
</div><!-- end main_nav_container -->
</nav>
<div id="search_hours_toggle_container">
<div class="page-centered-content">
<button id="search_hours_toggle" aria-expanded="true" aria-label="Toggle Search and Hours">
<span>Search and Hours</span>
<svg focusable="false" class="icon down"><use href="#icon-down-triangle"></use></svg>
<svg focusable="false" class="icon up"><use href="#icon-up-triangle"></use></svg>
</button>
</div>
</div>
<div id="search_hours_container">
<div id="search_hours" class="page-centered-content">
<div id="search_box" class="collapsed" role="search">
<div>
<h2>
Search our catalog, articles, website, and more
</h2>
<button id="responsive_search_toggle" aria-label="toggle search" aria-expanded="false">
<svg focusable="false" class="icon down"><use href="#icon-down-triangle"></use></svg>
<svg focusable="false" class="icon up"><use href="#icon-up-triangle"></use></svg>
</button>
</div>
<form >
<input id="bento_search" type="search" aria-label="search text" placeholder="enter keywords">
<button type="submit">
<svg focusable="false"><use href="#icon-search"></use></svg>
Search
</button>
</form>
<nav>
<h3 id="search_related_links" class="sr-only">Search-related links</h3>
<ul role="list" aria-labelledby="search_related_links">
<li>
<a href="" aria-describedby="catalog_tooltip" has-complex-tooltip>
Classic Catalog
</a>
<div class="complex-tooltip" id="catalog_tooltip" role="tooltip">
A list of print and electronic materials available in the Syracuse University Libraries.
</div>
</li>
<li>
<a href="" aria-describedby="summon_tooltip" has-complex-tooltip>
Summon
</a>
<div class="complex-tooltip" id="summon_tooltip" role="tooltip">
Something something about Summon searching almost everything such as books, articles, and other resources.
</div>
</li>
<li>
<a href="" aria-describedby="a_z_tooltip" has-complex-tooltip>
A-Z Journals
</a>
<div class="complex-tooltip" id="a_z_tooltip" role="tooltip">
A list of databases available through the Syracuse University Libraries.
</div>
</li>
<li>
<a href="" aria-describedby="surface_tooltip" has-complex-tooltip>
SURFACE
</a>
<div class="complex-tooltip" id="surface_tooltip" role="tooltip">
Syracuse University's open-access institutional repository.
</div>
</li>
</ul>
</nav>
</div>
<div id="hours_box">
<h2>Today's Hours</h2>
<div id="hours">
<div id="hours_location_today">
9 a.m. - 5 p.m.
</div>
<a href="">All Hours</a>
</div>
<div id="hours_location_select_container">
<label for="hours_location_select" class="sr-only">
Select Location for Today's Hour
</label>
<div class="select">
<select id="hours_location_select" class="select-dropdown">
<option value="bird">Bird Library</option>
<option value="carnegie">Carnegie Library</option>
<option value="arch">King + King Architecture Library</option>
</select>
<svg focusable="false"><use href="#icon-down-triangle"></use></svg>
</div>
</div>
</div>
</div>
</div>
<div id="chat_container">
<a id="chat_trigger" href="">
<div>Chat</div>
<svg focusable="false"><use href="#icon-chat"></use></svg>
</a>
</div>
</header>
<main id="main" class="page-centered-content left-nav right-aside">
<div id="main_top_matter">
<nav id="breadcrumbs" aria-labelledby="breadcrumbs_nav_label">
<h2 class="sr-only">
<span id="breadcrumbs_nav_label">Breadcrumbs</span>
Navigation
</h2>
<ol role="list">
<li><a href="">Home</a></li>
<li><a href="">Special Collection Research Center</a></li>
<!-- note use of aria-current="page" to indicate current page -->
<li><a aria-current="page" href="">Collection Areas</a></li>
</ol>
</nav>
<!-- Special case of headings for SCRC. This is ordered to emphasize the main part
but gets reordered in the styling
-->
<h1 class="scrc-heading-1">
<div>Collection Areas</div>
<div>Special Collections Research Center</div>
</h1>
</div>
<nav id="main_left_nav" aria-labelledby="left_nav_id">
<div id="main_left_nav_header" class="collapsed">
<h2>
<span id="left_nav_id">
Special Collections Research Center Pages
</span>
<span class="sr-only">
Navigation
</span>
</h2>
<button aria-label="toggle navigation" aria-expanded="false">
<svg focusable="false" class="icon down"><use href="#icon-down-triangle"></use></svg>
<svg focusable="false" class="icon up"><use href="#icon-up-triangle"></use></svg>
</button>
</div>
<div>
<ul role="list">
<li>
<a href="" class="home">
<span>
Special Collections Research Center
</span>
<svg focusable="false"><use href="#icon-home"></use></svg>
</a>
</li>
<li>
<a aria-current="page" href="">Collection Areas</a>
</li>
<li>
<a href="">Digital Collections</a>
</li>
<li>
<a href="">Pan Am 103</a>
</li>
<li>
<a href="">Soundbeat</a>
</li>
<li>
<a href="">University Archives</a>
</li>
<li>
<a href="">Search the Collections</a>
</li>
<li>
<a href="">Preservation and Conversation</a>
</li>
<li>
<a href="">Services</a>
</li>
<li>
<a href="">Education and Outreach</a>
</li>
<li>
<a href="">Programs</a>
</li>
</ul>
</div>
</nav>
<div id="main_central_column">
<h2 class="sr-only">
Main Content
</h2>
<p>
Sometimes there isn't a good answer. No matter how you try to rationalize the outcome, it doesn't make sense. And instead of an answer, you are simply left with a question. Why?
</p>
<h3>Debating me reeding</h3>
<p>Far quitting dwelling graceful the likewise received building. An fact so to that show am shed sold cold. Unaffected remarkably get yet introduced excellence terminated led. Result either design saw she esteem and. On ashamed no inhabit ferrars it ye besides resolve. Own judgment directly few trifling. Elderly as pursuit at regular do parlors. Rank what has into fond she.</p>
<p>Death there mirth way the noisy merit. <a href="">Piqued shy spring</a> nor six though mutual living ask extent. Replying of dashwood advanced ladyship smallest disposal or. Attempt offices own improve now see. Called person are around county talked her esteem. Those fully these way nay thing seems.</p>
<p>Do so written as raising parlors spirits mr elderly. Made late in of high left hold. Carried females of up highest calling. Limits marked led silent dining her she far. Sir but elegance marriage dwelling likewise position old pleasure men. Dissimilar themselves simplicity no of contrasted as. Delay great day hours men. Stuff front to do allow to asked he.</p>
<h3>Beckoning giants of sleep</h3>
<p>Greatly cottage thought fortune no mention he. Of mr certainty arranging am smallness by conveying. Him plate you allow built grave. Sigh sang nay sex high yet door game. She dissimilar was favourable unreserved nay expression contrasted saw. Past her find she like bore pain open. Shy lose need eyes son not shot. Jennings removing are his eat dashwood. Middleton as pretended listening he smallness perceived. Now his but two green spoil drift.</p>
<p>Can curiosity may end shameless explained. True high on said mr on come. An do mr design at little myself wholly entire though. Attended of on stronger or mr pleasure. Rich four like real yet west get. Felicity in dwelling to drawings. His pleasure new steepest for reserved formerly disposed jennings.</p>
<p>His having within saw become ask passed misery giving. Recommend questions get too fulfilled. He fact in we case miss sake. Entrance be throwing he do blessing up. Hearts warmth in genius do garden advice mr it garret. <a href="">Collected preserved</a> are middleton dependent residence but him how. Handsome weddings yet mrs you has carriage packages. Preferred joy agreement put continual elsewhere delivered now. Mrs exercise felicity had men speaking met. Rich deal mrs part led pure will but.</p>
<p>Ecstatic advanced and procured civility not absolute put continue. Overcame breeding or my concerns removing desirous so absolute. My melancholy unpleasing imprudence considered in advantages so impression. Almost unable put piqued talked likely houses her met. Met any nor may through resolve entered. An mr cause tried oh do shade happy.</p>
<p>Had strictly mrs handsome mistaken cheerful. We it so if resolution invitation remarkably unpleasant conviction. As into ye then form. To easy five less if rose were. Now set offended own out required entirely. Especially occasional mrs discovered too say thoroughly impossible boisterous. My head when real no he high rich at with. <a href="">Big Link Name Here For Basic Testing Purposes</a>. After so power of young as. Bore year does has get long fat cold saw neat. Put boy carried chiefly shy general.</p>
<p>Out believe has request not how comfort evident. Up delight cousins we feeling minutes. Genius has looked end piqued spring. Down has rose feel find man. Learning day desirous informed expenses material returned six the. She enabled invited exposed him another. Reasonably conviction solicitude me mr at discretion reasonable. Age out full gate bed day lose.</p>
</div>
<aside id="main_right_aside" >
<h2>
Contact
</h2>
<address>
<p>
Syracuse University Libraries<br>
Special Collections Research Center (SCRC)<br>
222 Waverly Ave<br>
Bird Library, Room 600<br>
Syracuse University<br>
Syracuse, NY 13244-2010
</p>
<p>
<em><a href="mailto:scrc@syr.edu" title="Email Special Collections">
scrc@syr.edu
</a></em>
</p>
<p><a href="tel:3154432697">315.443.2697</a></p>
<p>f: 315.443.2671</p>
<p>
<a href="/staff/index.php?skeyword=&sdepartment=Special+Collections+Research+Center&scategory=*">Staff Directory</a>
</p>
<address>
</aside>
</main>
<footer aria-labelledby="footer_heading">
<h2 id="footer_heading" class="sr-only">
SU Libraries Contact Information and Site Information
</h2>
<div class="page-centered-content">
<address>
Syracuse University Libraries<br>
222 Waverly Avenue, Syracuse NY 13244<br/>
<a class="phone" href="tel:3154432093">315.443.2093</a>
<span class="fax">315.443.2060</span><br>
<a class="email" href="mailto:lilbref@syr.edu">libref@syr.edu</a>
</address>
<nav id="footer_nav">
<h3 class="sr-only" aria-labelledby="footer_nav_id">
<span id="footer_nav_id">Footer</span> Navigation
</h3>
<h4 class="sr-only" id="social_media_links">
Social Media Links
</h4>
<ul role="list">
<li>
<a href="" class="tooltip">
<span class="sr-only">Facebook</span>
<svg focusable="false"><use href="#icon-home"></use></svg>
</a>
</li>
<li>
<a href="" class="tooltip">
<span class="sr-only">Twitter</span>
<svg focusable="false"><use href="#icon-home"></use></svg>
</a>
</li>
<li>
<a href="" class="tooltip">
<span class="sr-only">Instagram</span>
<svg focusable="false"><use href="#icon-home"></use></svg>
</a>
</li>
<li>
<a href="" class="tooltip">
<span class="sr-only">LinkedIn</span>
<svg focusable="false"><use href="#icon-home"></use></svg>
</a>
</li>
</ul>
<h4 class="sr-only" id="footer_site_links">
Policies and More
</h4>
<ul role="list" aria-labelledby="footer_site_links">
<li>
<a href="">Privacy</a>
</li>
<li>
<a href="">Policy</a>
</li>
<li>
<a href="">Accessibility</a>
</li>
<li>
<a href="">Inclusion</a>
</li>
<li>
<a href="">Accreditation</a>
</li>
<li>
<a href="">Sitemap</a>
</li>
</ul>
</nav>
</div>
</footer>
<!-- back to top link with pure CSS -->
<div id="back_to_top">
<a href="#page_header">
<span class="sr-only">Top</span>
<svg focusable="false" class="icon up"><use href="#icon-up-triangle"></use></svg>
</a>
</div>
<!-- aria-live for the screen reader messenger -->
<div id="sr_messenger" class="sr-only" aria-live="polite" aria-atomic="true" aria-relevant="additions text"></div>
</body>
</html>