ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/www/trunk/404.html
Revision: 626
Committed: Sat Sep 26 14:04:38 2015 UTC (8 years, 7 months ago) by laffer1
Content type: text/html
File size: 2522 byte(s)
Log Message:
fix some bad markup in the 404 page

File Contents

# User Rev Content
1 laffer1 437 <!DOCTYPE html>
2     <html>
3 laffer1 626 <head>
4     <title>MidnightBSD: 404 Not Found</title>
5     <meta name="viewport" content="width=device-width, initial-scale=1">
6     <style type="text/css" media="screen">
7     * {
8     text-align: center;
9     }
10    
11     html, body {
12     margin: 0;
13     padding: 0;
14     }
15    
16     body {
17     background: #0e0e0e;
18     color: #fff;
19     font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, sans-serif;
20     }
21    
22     a:link, a:visited, a:active, a:hover {
23     color: #fff;
24     }
25    
26     h1, h2, h3 {
27     font-weight: normal;
28     }
29    
30     h1 {
31     font-size: 3.5em;
32     margin: .2em;
33     }
34    
35     h2 {
36     }
37    
38     #globe {
39     width: 100%;
40     }
41    
42     #header {
43     margin: 0 auto;
44     width: 100%;
45     height: 261px;
46     background: #14202f url("/images/404b.jpg") center center no-repeat;
47     z-index: 0;
48     }
49    
50     #mountain {
51     background: url("/images/404a.png") repeat-x;
52     width: 100%;
53     height: 60px;
54     position: absolute;
55     top: 205px;
56     }
57    
58     #links {
59     font-family: "HelveticaNeue-UltraLight", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, sans-serif;
60     letter-spacing: 1px;
61     font-size: 1.2em;
62     margin-bottom: 2em;
63     }
64    
65     ul {
66     list-style: none;
67     display: inline;
68     }
69    
70     ul li {
71     display: inline;
72     }
73     </style>
74     </head>
75     <body>
76     <div id="globe">
77     <div id="mountain"></div>
78     <div id="header"></div>
79     <h1>Oops!</h1>
80    
81     <h2>The page you're looking for can't be found.</h2>
82    
83     <h3>Please try one of the following links.</h3>
84    
85     <div id="links">
86     <ul>
87     <li><a href="/"> home</a><span class="dot"> &#8226; </span></li>
88     <li><a href="/about/">about</a><span class="dot"> &#8226; </span></li>
89     <li><a href="/news/">news</a><span class="dot"> &#8226; </span></li>
90     <li><a href="/download/">download</a><span class="dot"> &#8226; </span></li>
91     <li><a href="/community/">community</a><span class="dot"> &#8226; </span></li>
92     <li><a href="/developer/">developers</a><span class="dot"> &#8226; </span></li>
93     <li><a href="/support/">support</a></li>
94     </ul>
95     </div>
96     </div>
97     </body>
98 smultron 203 </html>