25 lines
560 B
HTML
25 lines
560 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Oops!</title>
|
|
<style type="text/css">
|
|
body {
|
|
width: 75%;
|
|
padding-top: 50px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
|
|
font-size: 80%;
|
|
color: #333;
|
|
}
|
|
|
|
h1 {
|
|
margin: 30px 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Something's not right!</h1>
|
|
<p><strong>Sorry!</strong> Something has gone wrong while handling your request. Please try again later.</p>
|
|
</body>
|
|
</html>
|