-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
98 lines (90 loc) · 3.11 KB
/
test.html
File metadata and controls
98 lines (90 loc) · 3.11 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test Page for BetterWeb Extension</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 20px;
background-color: white;
color: black;
}
.sidebar {
width: 200px;
background: #f0f0f0;
padding: 20px;
float: right;
}
.ad {
background: yellow;
padding: 10px;
margin: 10px 0;
}
button {
background: #007acc;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
margin: 10px 0;
}
a {
color: blue;
text-decoration: underline;
}
.animation {
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
</style>
</head>
<body>
<header>
<h1>Test Page for BetterWeb Extension</h1>
<nav>
<a href="#home">Home</a> |
<a href="#about">About</a> |
<a href="#contact">Contact</a>
</nav>
</header>
<main>
<article>
<h2>Main Content</h2>
<p>This is a test page to verify all BetterWeb accessibility features work correctly:</p>
<ul>
<li><strong>Typography:</strong> Font family, size, spacing, line height</li>
<li><strong>Colors:</strong> Background/text colors, contrast, brightness</li>
<li><strong>Color Blindness:</strong> Support for different types</li>
<li><strong>Layout:</strong> Hide images, simplify layout, highlight links</li>
<li><strong>Interaction:</strong> Big cursor, pause animations</li>
<li><strong>Voice Commands:</strong> Speech recognition</li>
<li><strong>Profiles:</strong> Dyslexia, Low Vision, Motor, Cognitive</li>
</ul>
<h3>Interactive Elements</h3>
<button onclick="alert('Button clicked!')">Test Button</button>
<input type="text" placeholder="Test input field">
<input type="submit" value="Submit Button">
<h3>Links</h3>
<p>Here are some <a href="#">test links</a> to check if <a href="#">link highlighting</a> works.</p>
<h3>Images and Media</h3>
<img src="cloud.png" alt="Test Image" width="100">
<h3>Animated Content</h3>
<div class="animation">This text bounces up and down</div>
</article>
</main>
<aside class="sidebar">
<h4>Sidebar</h4>
<div class="ad">Advertisement</div>
<div class="widget">Widget Content</div>
</aside>
<footer>
<p>Footer content that should be cleaned up in simplified layout</p>
</footer>
</body>
</html>