You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#### Importance and Principles of Web Accessibility <!-- .slide: data-transition="zoom" data-transition-speed="slow" -->
2410
+
2411
+
```html[|1,13|2,12|3,5|6,8|9,11|4|7|10]
2412
+
<nav>
2413
+
<ul>
2414
+
<li>
2415
+
<ahref="#">Home</a>
2416
+
</li>
2417
+
<li>
2418
+
<ahref="#">About</a>
2419
+
</li>
2420
+
<li>
2421
+
<ahref="#">Contact</a>
2422
+
</li>
2423
+
</ul>
2424
+
</nav>
2425
+
```
2426
+
2427
+
[](https://codesandbox.io/p/sandbox/091-importance-and-principles-of-web-accessibility-qtxl9q)
2428
+
2429
+
[CodeSandbox: Importance and Principles of Web Accessibility](https://qtxl9q.csb.app/).
2430
+
2431
+
---
2432
+
2433
+
### ARIA (Accessible Rich Internet Applications) Labels and Roles <!-- .slide: data-transition="zoom" data-transition-speed="slow" -->
2434
+
2435
+
```html[|1,4|2|3]
2436
+
<button
2437
+
role="button"
2438
+
aria-label="Close">
2439
+
X</button>
2440
+
```
2441
+
2442
+
[](https://codesandbox.io/p/sandbox/092-aria-accessible-rich-internet-applications-labels-and-roles-vd3t4c)
2443
+
2444
+
[CodeSandbox: ARIA (Accessible Rich Internet Applications) Labels and Roles](https://vd3t4c.csb.app/).
2445
+
2446
+
---
2447
+
2448
+
### Accessibility Features in HTML5 <!-- .slide: data-transition="zoom" data-transition-speed="slow" -->
2449
+
2450
+
```html[|1,6|2,5|3|4]
2451
+
<main>
2452
+
<article>
2453
+
<h2>Web Accessibility</h2>
2454
+
<p>Web accessibility ensures that websites and web applications are usable by people with disabilities.</p>
2455
+
</article>
2456
+
</main>
2457
+
```
2458
+
2459
+
[](https://codesandbox.io/p/sandbox/093-accessibility-features-in-html5-zwjmnz)
2460
+
2461
+
[CodeSandbox: Accessibility Features in HTML5](https://zwjmnz.csb.app/).
0 commit comments