-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (96 loc) · 3.28 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Exploring Accessibility | DTC 475</title>
<link href="https://fonts.googleapis.com/css?family=Fjalla+One|Quicksand" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="script.js"></script>
</head>
<body>
<a id="skip-nav" href="#main">Skip to Main Content</a>
<aside id="hidden-features" class="visually-hidden">
<button id="large-text" class="buttons">
Enlarge Interface
</button>
<button id="small-text" class="buttons">
Minimize Interface
</button>
</aside>
<button id="show-features" class="buttons desktop-only">
☰ Toggle Accessibility Menu
</button>
<div id="grid">
<header>
<h1><a href="index.html">Exploring Accessibility</a></h1>
<h2>Web Design Best Practices </br> for Cognitive Disabilities</h2>
<nav>
<a id="home" href="index.html" style="color: white; background-color: #2d8276;">Home</a>
<a id="about" href="about.html">About</a>
</nav>
</header>
<section id="main">
<!-- content box 1 -->
<article id="interview">
<h1>
<a href="interview.html">
Accessibility Interview
</a>
</h1>
<a href="interview.html">
<img src="media/video15.png" alt="a thumbnail image depicting a play button to represent our interview video page" />
</a>
<p>
Check out our video interview with WSUV Accessibility leaders
</p>
</article>
<!-- content box 2 -->
<article id="info">
<h1>
<a href="info.html">
Methods Infographic
</a>
</h1>
<a href="info.html">
<img src="media/info2.png" alt="a thumbnail image depicting a play button to represent our interview video page" />
</a>
<p>
The most important Web Accessibility standards communicated visually
</p>
</article>
<!-- content box 3 -->
<article id="web">
<h1>
<a href="web.html">
Web Design Example
</a>
</h1>
<a href="web.html">
<img src="media/code2.png" alt="a thumbnail image depicting a play button to represent our interview video page" />
</a>
<p>
A live example of some of the most important best practices put into action
</p>
</article>
<!-- content box 3 -->
<article id="social">
<h1>
<a href="social.html">
Social Media Marketing
</a>
</h1>
<a href="social.html">
<img src="media/share4.png" alt="a thumbnail image depicting a play button to represent our interview video page" />
</a>
<p>
The research, findings, and communications strategy to raise awareness
</p>
</article>
</section> <!-- closes main grid -->
<footer>
Created by Washington State Vancouver DTC 475 students
</footer>
</div> <!-- this closes the grid -->
</body>
</html>