-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 2.9 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
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Accessible Flowchart</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="tree" role="diagram" aria-labelledby="flowchart-title" aria-describedby="flowchart-desc">
<h2 id="flowchart-title">Project Development Flowchart</h2>
<p id="flowchart-desc">This flowchart illustrates the main steps in the project development process, including decision points and multiple paths.</p>
<ul>
<li>
<a href="#" role="region" aria-labelledby="planning-title"><span id="planning-title">Planning</span></a>
<ul>
<li>
<a href="#" role="region" aria-labelledby="design-title"><span id="design-title">Design</span></a>
<ul>
<li>
<a href="#" role="region" aria-labelledby="approval-title"><span id="approval-title">Approval?</span></a>
<ul>
<li>
<a href="#" role="region" aria-labelledby="redesign-title"><span id="redesign-title">Redesign</span></a>
</li>
<li>
<a href="#" role="region" aria-labelledby="development-title"><span id="development-title">Development</span></a>
<ul>
<li>
<a href="#" role="region" aria-labelledby="testing-title"><span id="testing-title">Testing</span></a>
<ul>
<li>
<a href="#" role="region" aria-labelledby="deployment-title"><span id="deployment-title">Deployment</span></a>
<ul>
<li>
<a href="#" role="region" aria-labelledby="maintenance-title"><span id="maintenance-title">Maintenance</span></a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</body>
</html>