-
Notifications
You must be signed in to change notification settings - Fork 0
/
accessable.html
62 lines (61 loc) · 2.36 KB
/
accessable.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Accessable</title>
<link rel="stylesheet" href="style.css">
<script src="script.js" type="module"></script>
</head>
<body>
<nav>
<a href="index.html">Home</a>
<a href="accessable.html">Accessable</a>
<a href="engaging.html">Engaging</a>
<a href="aesthetic.html">Aesthetic</a>
<a href="functional.html">Functional</a>
<a href="customizable.html">Customizable</a>
</nav>
<div class="content">
<button class="change-theme">Change Theme</button>
<h1>Accessable</h1>
<div class="main">
<div class="question">
<h2>Can visitors browse the website regardless of their limitations?</h2>
<ul>
<li>Color blindness + contrast checks</li>
<li>Font size adaptability (em)</li>
<li>Clickable elements are also tabbable</li>
</ul>
</div>
<div class="question">
<h2>Can the visitor go where they want to?</h2>
<ul>
<li>Links and buttons are obviously interactable</li>
<li>Each page is divided neatly into sections</li>
<li>Information is skimmable</li>
<li>Consistent layout</li>
<li>Have bookmarks!</li>
</ul>
</div>
<div class="question">
<h2>Can the visitor take in the website’s content?</h2>
<ul>
<li>Text readability</li>
<li>balanced colors</li>
<li>parsable formatting</li>
<li>elements do not obscure one another</li>
<li>elements are properly sized and adjusted for the screen</li>
</ul>
</div>
<div class="question">
<h2>Can the visitor easily find the features of the website?</h2>
<ul>
<li>Ex. dark mode <button class="change-theme">Change Theme</button></li>
</ul>
</div>
</div>
</div>
</body>
</html>