forked from jamesshore/lets_code_javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
149 lines (113 loc) · 2.91 KB
/
404.html
File metadata and controls
149 lines (113 loc) · 2.91 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/html">
<!-- smoke test marker: WeeWikiPaint 404 page -->
<head>
<title>404: Not Found</title>
<!-- Don't harsh my placeholder HTML, man. Design and me, well, we don't get along. Pistols at noon and stuff. -->
<!-- Ack! Cut-and-paste! Death to the infidel! Fix it! Fix it now! Ia! Ia! Cthulu fhtagn! -->
<style type="text/css">
/* Height hackery */
html, body {
margin: 0;
padding: 0;
height: 100%;
}
#container {
min-height: 100%;
}
* html #container {
height: 100%;
}
/* General */
h1, h2, h3, h4, h5, h6 {
margin-top: 1em;
}
h1 {
font-size: 110%;
font-weight: 400;
}
.section h1 {
color: #cc0000;
}
ul, p, pre {
margin-top: 0.5em;
margin-bottom: 0;
line-height: 130%;
}
em {
font-style: normal;
color: #cc0000;
}
a {
color: #AD0000;
}
a:visited {
color: #AD0000;
}
a:hover {
background-color: pink;
color: #AD0000;
}
pre {
margin-left: 1em;
}
/* Page */
body {
background-color: #006666;
}
#container {
font-family: helvetica neue, helvetica, arial, sans-serif;
font-size: 16pt;
font-weight: 200;
width: 36em;
background-color: white;
padding: 0em 3.25em 0em 3.25em;
margin: 0 auto 0 auto;
box-shadow: 0px 0px 15px 5px black;
}
#content {
margin-top: 1em;
}
/* Headers and footers */
.header {
font-size: 125%;
margin: -1em 0 1em 0;
padding-top: 1em;
}
.header h1 {
font-size: 125%;
}
.footer {
padding: 2em 0 1em 0;
margin-left: -4em;
font-size: 67%;
}
/* Drawing area */
#drawingArea {
height: 500px;
width: 36em;
border: solid #cc0000 2px;
}
</style>
</head>
<body>
<div id="container">
<div id="content">
<div class="header">
<h1>404: Not Found</h1>
</div>
<div class="section">
<h1>I Would Like Fry With That</h1>
<p>Not sure if bad because page not found...</p>
<p> </p>
<!-- This programmer has a severe lack of style. Hipsters unite! -->
<p> </p>
<p> </p>
<p> </p>
<p>...or good because server still running.</p>
</div>
<div class="footer"></div>
</div>
</div>
</body>
</html>