16 lines
258 B
HTML
16 lines
258 B
HTML
|
|
<!Doctype html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>Page Not Found</title>
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
background: orange;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h1>Page cannot be found</h1>
|
||
|
|
<h3>Sorry, this page cannot be found.</h3>
|
||
|
|
</body>
|
||
|
|
</html>
|