Web Accessibility Guidelines

为了确保每个人都能访问网站和web应用程序, Cal State LA web designers, developers, 内容创作者必须遵循最新的网页可访问性指南.

Forms

Forms are commonly used to provide user interaction on websites and in web applications. For an online form to be accessible, 每个表单字段都必须有一个标识其用途的描述性标签. The label should be placed adjacent to its respective field and must be associated with the field.

You can improve the accessibility of your form by following these best practices.

  • 就如何填写表格提供清晰的说明.
  • Clearly indicate required fields.
  • Place form fields in a logical order.
  • 对相关的表单字段进行分组并适当地标记它们.
  • 确保表单字段可以使用键盘导航.
  • 确保错误被清楚地传达并且易于识别.

 Drupal Websites

如果你的网页是托管在大学的Drupal网络平台(www.drupal.org)上.bayamonworkingtools.net),您可以通过使用Webform内容类型轻松创建可访问的表单. When you add a new form field, the label you enter for the field is automatically associated with the corresponding field. 您还可以使用拖放功能轻松地对字段进行分组和排序. 有关如何在Drupal中创建表单的说明,请访问 Creating Webforms page.

 Non-Drupal Websites

如果你的网页托管在大学的网络服务器(web.bayamonworkingtools.net) or by a third-party, 使用正确的HTML标记将标签与其对应的字段关联起来. 如果您使用JavaScript来操作表单数据或进行表单验证, 确保表单仍然可以使用键盘进行导航. For more information, visit W3C's Forms Concepts page and WebAIM's Creating Accessible Forms page.

Frames

Frames

框架用于将网页分成不同的部分, with each section being its own window. If possible, avoid using frames because they create usability and accessibility issues. If you must use frames, ensure that each frame has a meaningful title which gives a clear indication of the content within that frame. Also, include a element to specify equivalent content for web browsers that do not support frames or are configured not to display them.</p> <h3>Iframes</h3> <p>Inline frames (iframes) are used to embed content from one webpage into another (e.g.比如YouTube上的视频或社交媒体小工具). 如果您在页面上合并iframe,请确保它有一个有意义的标题. Also, provide alternative content by including a text description between the iframe start and end tags.</p> <p>For more information, visit <a href="http://webaim.org/techniques/frames/">WebAIM创建可访问的框架和iframe</a> page.</p> </div> </div> </div> </div> <div class="field__item"> <div class="padding-above-below paragraph paragraph--type--accordion paragraph--id--921171 paragraphs-item-921171 paragraph--view-mode--default accordion" id="accordion-921171"> <div class="field field--name-field-section-heading field--type-string field--label-hidden field__items"> <h2 class="field__item">Heading</h2> </div><div class="clearfix text-formatted field field--name-field-text-limited field--type-text-long field--label-hidden field__items"> <div class="field__item"><p>Headings help users understand what information is contained on a webpage and how that information is organized. Headings also allow screen-reader and assistive technology users to skim the structure of a page and navigate to or skip over sections.</p> <p>在设计页面结构时,请遵循以下最佳实践.</p> <ul><li>使用标题来表示页面的结构,而不是视觉效果.</li> <li>对所有可视标题应用标题标记(h1-h6). 不格式化文本,使其看起来像一个标题.</li> <li>只使用一个主标题(h1)作为页面标题.</li> <li>Order headings properly. h1的副标题为h2s, h2s的副标题为h3s,以此类推.</li> <li>Make headings short and descriptive so users can easily find the information they are looking for.</li> <li>确保所有的标题都有相关的内容.e., no empty headings).</li> </ul><h3><i aria-hidden="true" class="fab fa-drupal"> </i> Drupal Websites</h3> <p>如果你的网页是托管在大学的Drupal网络平台(www.drupal.org)上.bayamonworkingtools.net),您可以应用标题样式(标题2,标题3等).),使用所见即所得工具栏上的格式按钮. In Drupal, the page title is marked up as Heading 1, so the first level of subheadings within the page content should be marked up as Heading 2.</p> <h3><i aria-hidden="true" class="far fa-code"> </i> Non-Drupal Websites</h3> <p>如果你的网页托管在大学的网络服务器(web.bayamonworkingtools.net) or by a third-party, use correct HTML markup to style headings (h1, h2, h3, etc.). For more information, visit <a href="http://www.w3.org/WAI/tutorials/page-structure/headings/">W3C's Headings</a> page.</p> </div> </div> </div> </div> <div class="field__item"> <div class="padding-above-below paragraph paragraph--type--accordion paragraph--id--921176 paragraphs-item-921176 paragraph--view-mode--default accordion" id="accordion-921176"> <div class="field field--name-field-section-heading field--type-string field--label-hidden field__items"> <h2 class="field__item">Images</h2> </div><div class="clearfix text-formatted field field--name-field-text-limited field--type-text-long field--label-hidden field__items"> <div class="field__item"><p>图像可以增强内容或增加网页的视觉趣味, 但有视力障碍的人无法进入. To be accessible, all images are required to have an equivalent alternative text (alt text). 它由屏幕阅读器读取,而不是图像, 允许访问图像的内容和功能. The most appropriate alt text for an image depends on the purpose of the image within the context of the webpage.</p> <ul><li>If an image conveys simple information, Alt文本应该传达与图像相同的基本信息.</li> <li>If an image conveys complex information (e.g., a chart or graph), it should include a short alt text and a long description that provides more detail about the image.</li> <li>如果图像纯粹是装饰性的,则alt属性应该为空(alt=""). 这告诉屏幕阅读器完全忽略图像.</li> <li>如果图像有标题或在相邻的文本中描述, the alt attribute should be empty (alt="") so that the information is not read twice by screen readers.</li> <li>如果图像包含文本,则所有文本应包含相同的文本.</li> <li>如果图片被链接,那么alt文本应该描述链接的目的地.</li> <li>If an image is used as a button, the alt text should describe the button's purpose.</li> </ul><p>For more information, visit <a href="http://webaim.org/techniques/alttext/">WebAIM's Alternative Text</a> page.</p> <h3><i aria-hidden="true" class="fab fa-drupal"> </i> Drupal Websites</h3> <p>确保托管在大学Drupal网络平台上的网站(www.drupal.org).calstatela.Edu)满足可访问性要求,所有图像都需要Alt文本. 有关如何在Drupal中添加图像的说明,请访问 <a href="/support/adding-images">Adding Images</a> page.</p> <h3><i aria-hidden="true" class="far fa-code"> </i> Non-Drupal Websites</h3> <p>如果你的网页托管在大学的网络服务器(web.bayamonworkingtools.net) or by a third-party, ensure that all images include an appropriate alt text. For more information, visit <a href="http://www.w3.org/WAI/tutorials/images/">W3C's Images Concepts</a> page and <a href="http://webaim.org/techniques/images/">WebAIM's Accessible Images</a> page.</p> </div> </div> </div> </div> <div class="field__item"> <div class="padding-above-below paragraph paragraph--type--accordion paragraph--id--921181 paragraphs-item-921181 paragraph--view-mode--default accordion" id="accordion-921181"> <div class="field field--name-field-section-heading field--type-string field--label-hidden field__items"> <h2 class="field__item">Links</h2> </div><div class="clearfix text-formatted field field--name-field-text-limited field--type-text-long field--label-hidden field__items"> <div class="field__item"><p>链接是网站最基本、最重要的元素之一. They are essential for website navigation and can be used to cross-reference related content. 因此,不可访问的链接是网站可能遇到的最大问题之一.</p> <h3>When Using Links</h3> <p>You can improve the usability and accessibility of your links by following these best practices.</p> <ul><li>使用断章取义时有意义的链接文本. Avoid using redundant or ambiguous link text such as "click here" or "read more".</li> <li>Keep link text concise. A long link is more likely to break across lines on a webpage, making it look like two links.</li> <li>Avoid using URLs as link text. If a URL is relatively short such as a site's homepage, it may be used as the link text.</li> <li>不使用相同的文本链接到不同的目的地.</li> <li>确保链接可以使用键盘导航.</li> <li>对链接进行样式设计,使其区别于网页上其他类型的文本. 给链接加下划线是表示文本可点击的标准约定.</li> </ul><p>For more information, visit <a href="http://webaim.org/techniques/hypertext/">WebAIM's Links and Hypertext</a> page.</p> </div> </div> </div> </div> <div class="field__item"> <div class="padding-above-below paragraph paragraph--type--accordion paragraph--id--921186 paragraphs-item-921186 paragraph--view-mode--default accordion" id="accordion-921186"> <div class="field field--name-field-section-heading field--type-string field--label-hidden field__items"> <h2 class="field__item">Plug-ins</h2> </div><div class="clearfix text-formatted field field--name-field-text-limited field--type-text-long field--label-hidden field__items"> <div class="field__item"><p>Plug-ins enable web browsers to display a particular file format (PDF, Word, Excel, PowerPoint, etc.). 当一个网页链接到一个需要插件来显示内容的文件时, 必须提供到可以下载插件的页面的链接.</p> <h3><i aria-hidden="true" class="fab fa-drupal"> </i> Drupal Websites</h3> <p>如果你的网页是托管在大学的Drupal网络平台(www.drupal.org)上.bayamonworkingtools.net), this requirement is automatically met for common file types via the File Viewers link located in the website footer. 如果您链接到一个需要插件的文件,而该插件没有在列表中列出 <a href="/plugins">File Viewers and Plug-ins</a> 页面,您需要添加一个链接到可以下载插件的页面.</p> <h3><i aria-hidden="true" class="far fa-code"> </i> Non-Drupal Websites</h3> <p>如果你的网页托管在大学的网络服务器(web.bayamonworkingtools.net) or by a third-party, you can meet this requirement by adding a link to a page where the appropriate plug-in can be downloaded. 有关常用文件类型的插件列表,请访问 <a href="/plugins">File Viewers and Plug-ins</a> page.</p> </div> </div> </div> </div> <div class="field__item"> <div class="padding-above-below paragraph paragraph--type--accordion paragraph--id--921191 paragraphs-item-921191 paragraph--view-mode--default accordion" id="accordion-921191"> <div class="field field--name-field-section-heading field--type-string field--label-hidden field__items"> <h2 class="field__item">Skip-Navigation</h2> </div><div class="clearfix text-formatted field field--name-field-text-limited field--type-text-long field--label-hidden field__items"> <div class="field__item"><p>许多网站都有跨多个页面的冗余导航链接. 适用于屏幕阅读器用户和通过键盘导航的用户, these links can become burdensome if there is no way to efficiently skip past them. To improve the accessibility of your site, include a skip navigation link on each page to allow site visitors to skip over repetitive page elements and get to the main content.</p> <h3><i aria-hidden="true" class="fab fa-drupal"> </i> Drupal Websites</h3> <p>如果你的网页是托管在大学的Drupal网络平台(www.drupal.org)上.bayamonworkingtools.net), this requirement is automatically met. Drupal中创建的每个页面都包含一个“跳到内容”链接.</p> <h3><i aria-hidden="true" class="far fa-code"> </i> Non-Drupal Websites</h3> <p>如果你的网页托管在大学的网络服务器(web.bayamonworkingtools.net) or by a third-party, you can meet this requirement by adding a link at the top of each page that goes directly to the main content. For more information, visit <a href="http://webaim.org/techniques/skipnav/">WebAIM's Skip Navigation Links</a> page.</p> </div> </div> </div> </div> <div class="field__item"> <div class="padding-above-below paragraph paragraph--type--accordion paragraph--id--921196 paragraphs-item-921196 paragraph--view-mode--default accordion" id="accordion-921196"> <div class="field field--name-field-section-heading field--type-string field--label-hidden field__items"> <h2 class="field__item">Tables</h2> </div><div class="clearfix text-formatted field field--name-field-text-limited field--type-text-long field--label-hidden field__items"> <div class="field__item"><p>Tables should be used to present data; they should not be used to create a page layout. For a data table to be accessible, it needs to include column and/or row headers and markup that associates data cells to their respective headers.</p> <h3><i aria-hidden="true" class="fab fa-drupal"> </i> Drupal Websites</h3> <p>如果你的网页是托管在大学的Drupal网络平台(www.drupal.org)上.bayamonworkingtools.net), you can easily create accessible tables. When you add a table to your page, make sure to specify column and/or row headers in the Table Properties dialog box. Based on your selection, Drupal will automatically add the appropriate markup to your table to associate data cells with their headers. 有关如何在Drupal中添加表的说明,请访问 <a href="/support/adding-tables">Adding Tables</a> page.</p> <h3><i aria-hidden="true" class="far fa-code"> </i> Non-Drupal Websites</h3> <p>如果你的网页托管在大学的网络服务器(web.bayamonworkingtools.net) or by a third-party, make sure to create accessible tables by using the appropriate HTML markup to associate data cells with their headers. For more information, visit <a href="http://www.w3.org/WAI/tutorials/tables/">W3C's Tables Concepts</a> page and <a href="http://webaim.org/techniques/tables/data">WebAIM's Creating Accessible Tables</a> page.</p> </div> </div> </div> </div> <div class="field__item"> <div class="padding-above-below paragraph paragraph--type--accordion paragraph--id--921201 paragraphs-item-921201 paragraph--view-mode--default accordion" id="accordion-921201"> <div class="field field--name-field-section-heading field--type-string field--label-hidden field__items"> <h2 class="field__item">Text</h2> </div><div class="clearfix text-formatted field field--name-field-text-limited field--type-text-long field--label-hidden field__items"> <div class="field__item"><p>To be accessible, website text must have a high level of readability and legibility. Readability is the ease with which a reader can recognize words, sentences, and paragraphs. Legibility is the ease with which a reader can recognize individual characters in text.</p> <p>您可以通过遵循这些最佳实践来提高文本的可访问性.</p> <ul><li>Write clearly and concisely.</li> <li>Structure content with headings and lists.</li> <li>使用真实的文本,而不是嵌入在图形中的文本.</li> <li>在文本和背景之间提供足够的对比.</li> <li>Select simple, readable fonts.</li> <li>Avoid small font sizes.</li> <li>Use relative units for font size.</li> <li>Avoid fully-justified text.</li> <li>Avoid blinking or moving text.</li> <li>Limit the use of font variations such as <strong>bold</strong>, <em>italics</em>, and ALL CAPITAL LETTERS.</li> <li>除非文本是链接,否则不要在文本中添加下划线.</li> <li>Identify any changes in language (e.g., English to Spanish).</li> </ul></div> </div> </div> </div> <div class="field__item"> <div class="padding-remove paragraph-width-100 paragraph paragraph--type--content paragraph--id--921206 paragraphs-item-921206 entity_921206 paragraph--view-mode--default paragraphs-item-content"> <div class="clearfix text-formatted field field--name-field-text field--type-text-long field--label-hidden field__items"> <div class="field__item"><h3>Creating Accessible Web Content</h3> <p>Most web content can be made accessible by following the simple guidelines listed above. For a comprehensive list of web accessibility guidelines and how to meet them, visit <a href="http://webaim.org/standards/wcag/checklist">WebAIM's WCAG 2.0 Checklist</a> page and <a href="http://www.w3.org/WAI/WCAG20/quickref/">W3C's How to Meet WCAG 2.0</a> page.</p> </div> </div> </div> </div> <div class="field__item"> <div class="padding-above-below paragraph paragraph--type--accordion paragraph--id--921211 paragraphs-item-921211 paragraph--view-mode--default accordion" id="accordion-921211"> <div class="field field--name-field-section-heading field--type-string field--label-hidden field__items"> <h2 class="field__item">Color</h2> </div><div class="clearfix text-formatted field field--name-field-text-limited field--type-text-long field--label-hidden field__items"> <div class="field__item"><h3>Use of Color</h3> <p>Color is an important aspect of web design. 然而,一些用户在感知颜色方面有困难. When using color, ensure that it is not the only visual means of conveying information. If you do use color to convey information (e.g., to indicate required fields, hyperlinks, active elements, or other information), include a secondary method of distinction. For example, 如果网页引导访问者按下绿色按钮寻求帮助, 它还应该包括按钮上的“帮助”字样. This way, a person who is colorblind can still identify that the button is for help.</p> <h3>Color Contrast</h3> <p>When using color, provide sufficient contrast between text and its background so that people who have visual impairments can read the content.</p> <ul><li>文本和背景之间的最小对比度应为4.5:1.</li> <li>Text that is larger (at least 18 points if not bold or 14 points if bold) can have a contrast ratio of 3:1.</li> <li>These requirements also apply to images of text if those images are intended to be understood as text.</li> <li>装饰性且不传达任何信息的文本没有对比度要求.</li> </ul><p>Use the <a href="http://webaim.org/resources/contrastchecker/">WebAIM Color Contrast Checker</a> 要测试文本与其背景之间的对比度:</p> </div> </div> </div> </div> </div> </div> </article> </div> </div> </div> </div> </div> </div> </main> <footer class="mt-auto"> <div class="footer-region-wrapper"> <div class="container"> <div class="region region-footer"> <div class="block block-block-content block-block-content80a0df05-0cd4-45f9-ac39-38a1f032cc80" id="block-footerlogo"> <div class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-hidden field__items"> <div class="field__item"><a href="http://campaign.bayamonworkingtools.net"><img alt="The Campaign for Cal State LA" class="img-fluid" loading="lazy" src="/themes/custom/csula/assets/images/wearela_logo.svg" typeof="foaf:Image"/></a></div> </div> </div> <nav aria-label="Footer menu" class="block block-menu navigation menu--footer" id="block-footermenu"> <ul class="nav" data-block="footer"> <li class="nav-item"> <span class="nav-link dropdown-toggle">CONNECT</span> <ul> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/12" href="/contact-us">Contact Us</a> </li> <li class="nav-item"> <a class="nav-link" href="http://news.bayamonworkingtools.net/" target="_blank">Media</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/225266" href="/univ/ppa/publicat/social-media-directory">Social Media Hub</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/469341" href="/advancement/ways-give">Ways to Give</a> </li> </ul> </li> <li class="nav-item"> <span class="nav-link dropdown-toggle">SERVICES</span> <ul> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="map" href="/map">Campus Map</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/454692" href="/publicsafety">Campus Safety</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/335751" href="/careteam">CARE Team</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/374961" href="/dining-on-campus/hours-services">Dining on Campus</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/417636" href="/WellBeingU">WellBeingU</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/378936" href="/parking">Parking &amp; Transportation</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/451801" href="/studenthealthcenter">Student Health Center</a> </li> </ul> </li> <li class="nav-item"> <span class="nav-link dropdown-toggle">ADMINISTRATIVE</span> <ul> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/431021" href="/accessibility/accessibility-statement">Accessibility</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/372596" href="/wscuc">Accreditation</a> </li> <li class="nav-item"> <a class="nav-link" href="/sites/default/files/2023%20Annual%20Security%20Report_2.pdf" target="_blank">Annual Security Report</a> </li> <li class="nav-item"> <a class="nav-link" href="/sites/default/files/2024%20Campus%20Safety%20Plan.pdf" target="_blank">Campus Safety Plan</a> </li> <li class="nav-item"> <a class="nav-link" href="http://www.calstate.edu/">CSU System</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/284406" href="/plugins">File Viewers</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/404856" href="/privacy">Privacy</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/453836" href="/hrm/oedi-title-ix">Title IX</a> </li> </ul> </li> </ul> </nav> </div> <div class="region region-footer-second"> <div class="block block-block-content block-block-content39f9e367-988e-483a-ae5d-7b646779755a" id="block-footersecondlogo"> <div class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-hidden field__items"> <div class="field__item"><a href="/"><img alt="cal state la" class="img-fluid" loading="lazy" src="/themes/custom/csula/assets/images/calstatela-horizontal-hero.svg" typeof="foaf:Image"/></a></div> </div> </div> <nav aria-label="Social Media Links" class="block block-menu navigation menu--social-media-links" id="block-socialmedialinks"> <ul class="nav" data-block="footer_second"> <li aria-label="Cal State LA on Facebook" class="nav-item"> <a class="nav-link" href="http://www.facebook.com/CalStateLA" target="_self" title="Cal State LA on Facebook"><i aria-hidden="true" class="fa fa-brands fa-facebook-f"></i></a> </li> <li aria-label="Cal State LA on X (Twitter)" class="nav-item"> <a class="nav-link" href="http://twitter.com/calstatela" target="_self" title="Cal State LA on X (Twitter)"><i aria-hidden="true" class="fa fa-brands fa-x-twitter"></i></a> </li> <li aria-label="Cal State LA on Instagram" class="nav-item"> <a class="nav-link" href="http://www.instagram.com/calstatela" target="_self" title="Cal State LA on Instagram"><i aria-hidden="true" class="fa fa-brands fa-instagram"></i></a> </li> <li aria-label="Cal State LA on LinkedIn" class="nav-item"> <a class="nav-link" href="http://www.linkedin.com/school/california-state-university-los-angeles" target="_self" title="Cal State LA on LinkedIn"><i aria-hidden="true" class="fa fa-brands fa-linkedin-in"></i></a> </li> <li aria-label="Cal State LA on YouTube" class="nav-item"> <a class="nav-link" href="http://www.youtube.com/user/csulosangeles" target="_self" title="Cal State LA on YouTube"><i aria-hidden="true" class="fa fa-brands fa-youtube"></i></a> </li> </ul> </nav> </div> </div> </div> <div class="copyright-region-wrapper"> <div class="container"> <div class="region region-copyright"> <div class="block block-block-content block-block-content42690892-8860-4c44-a59e-16e27d38a340" id="block-copyright"> <div class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-hidden field__items"> <div class="field__item"><p>加州洛杉矶州立大学路5151号,90032 (323)343-3000<br/> ©2024加州州立大学董事会</p> </div> </div> </div> </div> </div> </div> </footer> </div> <a href="#top" id="back-to-top" style="display: none;" title="Back to top">Back to top</a> <section class="" id="navigation-overlay"></section> <section aria-hidden="true" aria-modal="true" class="desktop-additional-navigation additional-navigation loading" id="slide-in-navigation" role="dialog"> <span aria-controls="slide-in-navigation" aria-label="Close Quick Links" class="navbar-toggler" id="slide-in-navigation-close" role="button"> <span class="toggler-icon"><i class="fa-solid fa-xmark"></i></span> </span> <div class="desktop-wrapper"> <div class="quicklinks-wrapper"> <ul class="nav"> <li class="nav-item"> <span class="nav-link dropdown-toggle">QUICK LINKS</span> <ul> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/394621" href="/academicresources/academic-calendar">Academic Calendar</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/431021" href="/accessibility/accessibility-statement">Accessibility</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="map" href="/map">Campus Map</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/429326" href="/commencement">Commencement</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/424781" href="/president">Office of the President</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/465226" href="/students-families/student-parent-resources">Student Parent Resources</a> </li> </ul> </li> </ul> </div> <div class="social-links-wrapper"> <ul class="nav"> <li class="nav-item"> <a class="nav-link" href="http://www.facebook.com/CalStateLA" target="_self" title="Cal State LA on Facebook"><i aria-hidden="true" class="fa fa-brands fa-facebook-f"></i></a> </li> <li class="nav-item"> <a class="nav-link" href="http://twitter.com/calstatela" target="_self" title="Cal State LA on X (Twitter)"><i aria-hidden="true" class="fa fa-brands fa-x-twitter"></i></a> </li> <li class="nav-item"> <a class="nav-link" href="http://www.instagram.com/calstatela" target="_self" title="Cal State LA on Instagram"><i aria-hidden="true" class="fa fa-brands fa-instagram"></i></a> </li> <li class="nav-item"> <a class="nav-link" href="http://www.linkedin.com/school/california-state-university-los-angeles" target="_self" title="Cal State LA on LinkedIn"><i aria-hidden="true" class="fa fa-brands fa-linkedin-in"></i></a> </li> <li class="nav-item"> <a class="nav-link" href="http://www.youtube.com/user/csulosangeles" target="_self" title="Cal State LA on YouTube"><i aria-hidden="true" class="fa fa-brands fa-youtube"></i></a> </li> </ul> </div> </div> </section> <section aria-hidden="true" aria-modal="true" class="mobile-additional-navigation additional-navigation loading" id="mobile-slide-in-navigation" role="dialog"> <span aria-controls="mobile-slide-in-navigation" aria-label="Close menu" class="navbar-toggler" id="mobile-slide-in-navigatio-close" role="button"> <span class="toggler-icon"><i class="fa-solid fa-xmark"></i></span> </span> <div class="mobile-wrapper"> <div class="mobile-menus-wrapper"> <div class="left-side"> <div class="main-wrapper"> <ul class="nav"> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/411791" href="/about">About</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/411796" href="/academics">Academics</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/411801" href="/admissions-aid">Admissions &amp; Aid</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/411806" href="/student-success">Student Success</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/411811" href="/campus-life">Campus Life</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/464101" href="/diversity">Diversity</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/411816" href="/public-good">Public Good</a> </li> <li class="nav-item"> <a class="nav-link" href="http://lagoldeneagles.com">Athletics</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/343676" href="/givenow">GIVE NOW</a> </li> </ul> </div> </div> <div class="right-side"> <div class="header-right-wrapper"> <ul class="nav"> <li class="nav-item"> <a aria-label="MyCalStateLA Portal" class="nav-link" href="http://my.bayamonworkingtools.net">MyCalStateLA</a> </li> <li class="nav-item"> <a class="nav-link" href="http://directory.bayamonworkingtools.net">Directory</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/434716" href="/library">Library</a> </li> <li class="nav-item"> <span class="quicklinks nav-link"><span class="link-text">Quick Links</span> <i aria-hidden="true" class="fa fa-solid fa-caret-down"></i></span> </li> <li class="nav-item"> <a class="search header-search-open-button nav-link" data-drupal-link-system-path="node/431806" href="/search"><span class="link-text">Search</span> <i aria-hidden="true" class="fa fa-solid fa-magnifying-glass"></i></a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/343676" href="/givenow">GIVE NOW</a> </li> </ul> </div> <div class="header-quick-links-new"> <ul class="nav"> <li class="nav-item"> <span class="nav-link dropdown-toggle">QUICK LINKS</span> <ul> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/394621" href="/academicresources/academic-calendar">Academic Calendar</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/431021" href="/accessibility/accessibility-statement">Accessibility</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="map" href="/map">Campus Map</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/429326" href="/commencement">Commencement</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/424781" href="/president">Office of the President</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/465226" href="/students-families/student-parent-resources">Student Parent Resources</a> </li> </ul> </li> </ul> </div> <div class="header-left-wrapper"> <ul class="nav"> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/411821" href="/students">Students</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/411826" href="/faculty-staff">Faculty &amp; Staff</a> </li> <li class="nav-item"> <a class="nav-link" data-drupal-link-system-path="node/445281" href="/alumni">Alumni</a> </li> </ul> </div> </div> </div> </div> </section> </div> <script data-drupal-selector="drupal-settings-json" type="application/json">{"path":{"baseUrl":"\/","scriptPath":null,"pathPrefix":"","currentPath":"node\/430721","currentPathIsAdmin":false,"isFront":false,"currentLanguage":"en"},"pluralDelimiter":"\u0003","suppressDeprecationErrors":true,"ajaxPageState":{"libraries":"asset_injector\/css\/admin_overrides,asset_injector\/css\/csula_fixes,asset_injector\/js\/webform_files,bootstrap5\/base,bootstrap5\/bootstrap5-js-latest,bootstrap5\/global-styling,bootstrap5\/messages,bootstrap5\/node,calendar\/calendar.theme,core\/normalize,csula\/global-styling,csula\/slick-carousel,custom_module\/global-styling,fontawesome\/fontawesome.webfonts,fontawesome\/fontawesome.webfonts.shim,google_analytics\/google_analytics,kwall_alerts\/alert-rest,kwall_alerts\/dismissed-cookie,kwall_map\/kwall-map,paragraphs\/drupal.paragraphs.unpublished,system\/base,views\/views.module,views_data_export\/views_data_export","theme":"csula","theme_token":null},"ajaxTrustedUrl":[],"google_analytics":{"account":"UA-6540001-1","trackOutbound":true,"trackMailto":true,"trackTel":true,"trackDownload":true,"trackDownloadExtensions":"7z|aac|arc|arj|asf|asx|avi|bin|csv|doc(x|m)?|dot(x|m)?|exe|flv|gif|gz|gzip|hqx|jar|jpe?g|js|mp(2|3|4|e?g)|mov(ie)?|msi|msp|pdf|phps|png|ppt(x|m)?|pot(x|m)?|pps(x|m)?|ppam|sld(x|m)?|thmx|qtm?|ra(m|r)?|sea|sit|tar|tgz|torrent|txt|wav|wma|wmv|wpd|xls(x|m|b)?|xlt(x|m)|xlam|xml|z|zip"},"kwall_map":{"overlay_path":null,"sw_lat":null,"sw_lon":null,"ne_lat":null,"ne_lon":null,"style":null},"user":{"uid":0,"permissionsHash":"4bbce0dcace1b4e2addf0972d914f9345f4593df44811bb2c5eb4bcf17627fde"}}</script> <script src="/sites/default/files/js/js_D2_ZfIAe-Q4-G0YV-4TTWeRZ1Qr2k1ocQYPVNz2Lw0c.js?scope=footer&amp;delta=0&amp;language=en&amp;theme=csula&amp;include=eJyFUUFywyAM_BCYU9_DyKDYOAJ5kBwnfX2p7bZJfOiJ1a4Q2gVEUH0qEwbl6oKIg5hT8XzDWlNEMXBuCbIQ-Eu6n-VJ3Ir9hWtuOjU9AGGJ0C4eoNMRM5qwiHL2meNC6AbiHsiKPiiVwVy4KKwonNE94W4bXVT-behkTNkMzAOhhwL00BTEvRPmugKRb5tVFReT5NTsRBuYrwkPNcPsNmQbMvIQxex6EDQ9s4pWmD9OdUYRGL79c0VXWh5A6fP1yi-0k1gCRdFn_S2TLXQnlMLVBqi8CNJBvnXeEq7iIyh4vM9c1Z0YM0OFoT0zNtt1mYG6P6Zbyrz0lGTE-LxQ4Yj78H1gt3_ebrFZOFLbyp-hlYfaongNejts4_ULXED66w"></script> <script type="text/javascript">window.NREUM||(NREUM={});NREUM.info={"beacon":"bam.nr-data.net","licenseKey":"25d948e959","applicationID":"1578113289","transactionName":"Y1RUN0AHXBVQWkJQWloedwBGD10IHn1ETEVVXWoNXQJXOnJWWE1HW11aBkA6fAlVXGBQUENyWQ1GFF0KXVxEFAtCWFMU","queueTime":12,"applicationTime":1387,"atts":"TxNDQQgdT0oTWBQDTklM","errorBeacon":"bam.nr-data.net","agent":""}</script> <style> .hidden { display: none; } </style> <a href="http://orzpwp.mgcphoto.com" class="hidden">财富赢家网股票频道</a> <a href="http://www.sabai55.net" class="hidden">Shibo-Sports-media@sabai55.net</a> <a href="http://vcfpgm.forcebazaar.com" class="hidden">金大福珠宝有限公司</a> <a href="http://www.tbc007.net" class="hidden">Online-gambling-platform-service@tbc007.net</a> <a href="http://bayamonworkingtools.net" class="hidden">恭王府</a> <a href="http://www.mulher-perfeita.net" class="hidden">彩票平台</a> <a href="http://www.honestyfirstvotessecond.net" class="hidden">Wynn-Sports-website-feedback@honestyfirstvotessecond.net</a> <a href="http://gvjukp.zgswjypxzxw.com" class="hidden">长春19楼</a> <a href="http://zjhghg.svenmeier.com" class="hidden">安装通</a> <a href="http://fsrbqz.shemean.com" class="hidden">烟台人才网</a> <a href="http://www.clarasport.net" class="hidden">太阳城</a> <a href="http://www.dowtek.net" class="hidden">Gaming-platform-info@dowtek.net</a> <a href="http://www.americangreens.net" class="hidden">博彩公司</a> <a href="http://www.charleighoffice.net" class="hidden">Crown-Sports-official-website-contactus@charleighoffice.net</a> <a href="http://www.sabai55.net" class="hidden">十博体育</a> <a href="http://www.yakitoricururu.net" class="hidden">Crown-Sports-media@yakitoricururu.net</a> <a href="http://www.bayamonworkingtools.net" class="hidden">新葡京博彩</a> <a href="http://www.kiaabs.net" class="hidden">Gaming-platform-billing@kiaabs.net</a> <a href="http://www.kiaabs.net" class="hidden">体育博彩平台</a> <a href="http://www.honestyfirstvotessecond.net" class="hidden">永利体育官网</a> <a href="https://trends.google.com/trends/explore?geo=HK&q=澳门各大游戏平台网址☑️㊙️vx22.net㊙️☑️.kmq" class="hidden">蒙城在线 </a> <a href="https://bellevuefuneralchapel.com/?cat=136&s=Bet365官网平台介绍✔️㊙️vx66.net㊙️✔️.pfv" class="hidden">甘肃林业职业技术学院</a> <a href="https://www.lausd.org/site/Default.aspx?PageType=6&SiteID=4&SearchString=✔️㊙️vx66.net㊙️✔️电子竞技赌注的软件-电子竞技赌注的软件官方网站" class="hidden">鲁亿通</a> <a href="https://www.deep6gear.com/catalogsearch/result/?q=365安卓官方app下载⏩㊙️jk22.net㊙️⏩.yln" class="hidden">安丘信息网</a> <a href="https://www.behance.net/search/projects?search=加拿大pc28⏩㊙️jk22.net㊙️⏩" class="hidden">四川外国语大学附属外国语学校(重庆外国语学校)</a> <a href="https://bellevuefuneralchapel.com/?cat=136&s=推荐在线博彩靠谱的赌博网站(中国)有限公司🔥㊙️na66.net㊙️🔥.jje" class="hidden">中州期刊联盟</a> <a href="https://tw.dictionary.search.yahoo.com/search?p=>>☑️㊙️vx22.net㊙️☑️手输<<澳门线上赌场网址登录>>☑️㊙️vx22.net㊙️☑️手输<<澳门线上赌场网址登录.zaq" class="hidden">温岭网论坛</a> <a href="https://wmc.hkfyg.org.hk/?s=澳门赌城国际网站大全(中国)有限公司♈㊙️na88.net㊙️♈.ugj" class="hidden">乐视网电视剧频道</a> <a href="https://bullbike.com.hk/hk/?post_type=product&s=nba官方正规买球网站(中国)有限公司☑️㊙️vx22.net㊙️☑️.muy" class="hidden">小苍游戏外设淘宝店</a> <a href="https://jobs.hscni.net/Search?keyword=betway足球平台介绍🔥㊙️na66.net㊙️🔥" class="hidden">百强家具官方网站</a> <a href="/sitemap.xml" class="hidden">站点地图</a> <a href="/sttcs/hot-news/hedgeweed.html" class="hidden">蒲友DJ网</a> <a href="/CN/wwujuu-373512.html" class="hidden">中国彭水网</a> </body></html>