-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (38 loc) · 1.49 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Creating a Web for Everyone</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="main.css">
</head>
<body>
<h1>Creating a Web for Everyone</h1>
<h2>
Ally Ford
</h2>
<p>
This document will discuss the different guidelines for inclusive design and their importance to people with disabilities. All guidelines are derived from “A Web for Everyone”.
</p>
<h2>
Guidelines
</h2>
<p>
Please see a list here with the guidelines. Click on the guideline for a detailed explanation and example of how it applies to accessibility.
</p>
<!--NavigationBar-->
<nav>
<div class="topnav" role="navigation">
<a href="ClearPurpose.html">Clear Purpose</a>
<a href="SolidStructure.html">Solid Structure</a>
<a href="EasyInteraction.html">Easy Interaction</a>
<a href="Wayfinding.html">Wayfinding</a>
<a href="CleanPresentation.html">Clean Presentation</a>
<a href="PlainLanguage.html">Plain Language</a>
<a href="AccessibleMedia.html">Accessible Media</a>
</div>
</nav>
</body>
</html>