404.html 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <html>
  2. <head>
  3. <meta charset="utf-8">
  4. <meta name="renderer" content="webkit|ie-comp|ie-stand">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
  7. <meta http-equiv="Cache-Control" content="no-siteapp">
  8. <title>404页面</title>
  9. <style>
  10. .page-404 {
  11. padding-right: 15px;
  12. padding-left: 15px;
  13. margin-right: auto;
  14. margin-left: auto;
  15. color: #afb5bf;
  16. padding-top: 60px;
  17. padding-bottom: 90px;
  18. text-align: center;
  19. }
  20. .page-404 .error-title {
  21. width: 350px;
  22. font-size: 80px;
  23. margin: 0 auto;
  24. overflow: hidden;
  25. }
  26. .page-404 .icon{
  27. display: block;
  28. background-image: url(images/404.png);
  29. width: 120px;
  30. height: 120px;
  31. background-repeat: no-repeat;
  32. background-size: cover;
  33. float: left;
  34. }
  35. .page-404 .va-m {
  36. vertical-align: middle!important;
  37. float: left;
  38. padding-left: 50px;
  39. }
  40. .page-404 .error-description {
  41. font-size: 24px;
  42. }
  43. </style>
  44. </head>
  45. <body>
  46. <div class="page-404 ">
  47. <div class="error-title">
  48. <p class="icon" style="font-size:80px"></p>
  49. <p class="va-m"> 404</span>
  50. </div>
  51. <p class="error-description">ขอโทษที่คุณเข้าเยี่ยมชมหน้าเว็บที่ไม่มีอยู่ ~ ~ ~ ~ ~ ~ ~</p>
  52. </div>
  53. </body></html>