forked from whatwg/html
-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.html
22 lines (22 loc) · 982 Bytes
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<script src="/link-fixup.js" defer></script>
<title>Broken link</title>
<style>
body.loading div.failed, body.failed div.loading, div.failed { display: none; }
body.loading div.loading, body.failed div.failed, div.loading { display: block; }
</style>
<body onload="document.body.className = 'failed'">
<script>document.body.className = 'loading'</script>
<div class="loading">
<p>Loading...</p>
</div>
<div class="failed">
<p>The page you are looking for is no longer available at this URL.</p>
<p>Links to the multipage version of the specification are
unfortunately likely to break over time. You might be able to find
what you want from <a href="/multipage/">the contents page</a>.</p>
<p>If you have found a broken link on the WHATWG site itself, please
e-mail <a href="mailto:ian@hixie.ch">Ian Hickson</a>. If you found a
broken link from another site pointing to the WHATWG site, please
let that site know of the problem instead. Thanks!</p>
</div>