error.html (576B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>Boom!</title> 5 <meta charset="utf-8" /> 6 <meta 7 name="viewport" 8 content="width=device-width,initial-scale=1,user-scalable=no" 9 /> 10 <style> 11 body { 12 background-color: red; 13 color: white; 14 font-family: sans; 15 } 16 17 div.container { 18 width: 75%; 19 margin: auto; 20 text-align: center; 21 } 22 </style> 23 </head> 24 <body> 25 <div class="container"> 26 <h1>Boom!</h1> 27 <p>Something bad happened...</p> 28 <p>$ERROR</p> 29 </div> 30 </body> 31 </html>