Advertisement
Russell

Error 500 HTML Template

Oct 5th, 2019
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6.  
  7. <title>Server Error</title>
  8.  
  9. <!-- Fonts -->
  10. <link rel="dns-prefetch" href="//fonts.gstatic.com">
  11. <link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet" type="text/css">
  12.  
  13. <!-- Styles -->
  14. <style>
  15. html, body {
  16. background-color: #fff;
  17. color: #636b6f;
  18. font-family: 'Nunito', sans-serif;
  19. font-weight: 100;
  20. height: 100vh;
  21. margin: 0;
  22. }
  23.  
  24. .full-height {
  25. height: 100vh;
  26. }
  27.  
  28. .flex-center {
  29. align-items: center;
  30. display: flex;
  31. justify-content: center;
  32. }
  33.  
  34. .position-ref {
  35. position: relative;
  36. }
  37.  
  38. .code {
  39. border-right: 2px solid;
  40. font-size: 26px;
  41. padding: 0 15px 0 15px;
  42. text-align: center;
  43. }
  44.  
  45. .message {
  46. font-size: 18px;
  47. text-align: center;
  48. }
  49. </style>
  50. </head>
  51. <body>
  52. <div class="flex-center position-ref full-height">
  53.  
  54. <div class="code">
  55. 500
  56. </div>
  57.  
  58. <div class="message" style="padding: 10px;">
  59. Server Error
  60. </div>
  61.  
  62. </div>
  63. </body>
  64. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement