-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsomepage.html
51 lines (45 loc) · 2.37 KB
/
somepage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Accessible University Generic Landing Page</title>
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon/favicon-16x16.png">
<link href="styles/main.css" rel="stylesheet">
<link href="styles/after-main.css" rel="stylesheet">
<style>
h1 {
margin: 1em 0.5em 0.25em;
}
main p {
font-size: 1.1em;
padding: 1em;
max-width: 40em;
}
</style>
</head>
<body>
<div id="content">
<header>
<img id="logo" src="images/au123456789.gif" alt="Accessible University" width="441" height="90"/>
</header>
<main>
<h1>There's nothing to see here.</h1>
<p>If you arrived here by clicking on a link on the
<a href="index.html">Accessibility University</a> Demo Site,
just use your browser's back button to return to the demo page.
</p>
</main>
<footer>
<div id="license">
<div id="ccLogo">
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a>
</div>
<span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">Accessible University</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://washington.edu/accesscomputing/AU" property="cc:attributionName" rel="cc:attributionURL">University of Washington</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.
</div>
<p>This product was originally developed with support from the National Institute on Disability and Rehabilitation Research of the U.S. Department of Education (grant #H133D010306), and has been subsequently updated and maintained with support from the National Science Foundation (grants #CNS-0540615, CNS-0837508, CNS-1042260, CNS-1539179, and CNS-2137312). The contents do not necessarily represent the policies of the U.S. federal government, and you should not assume their endorsement.</p>
</footer>
</div><!--end #content-->
</body>
</html>