-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathabout.html
49 lines (43 loc) · 1.04 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Accessibility Testing Resources</title>
<link rel="stylesheet" type="text/css" href="./mraccess_styles.css">
<style>
html {
height: 100%;
}
main {
height: 100%;
margin-left:1em;
}
footer {
height: 10%;
}
</style>
</head>
<body>
<header>
<div class="logo">
<img src="./mraccess logo.png" alt="Mraccess Accessibility logo">
</div>
<nav>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a aria-current="page" href="about.html">About</a></li>
</ul>
</nav>
</header>
<main>
<h1>About this site</h1>
<p>This site provides resources, examples, and other documentation regarding digital accessibility. All information is provided as-is with no warranty or support.</p>
</main>
<footer>
<div class="row">
<div class="column">X</div>
<div class="column">Accessibility</div>
<div class="column" style="text-align:right">Mraccess 2023</div>
</div>
</footer>
</body>
</html>