1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="renderer" content="webkit|ie-comp|ie-stand">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
- <meta http-equiv="Cache-Control" content="no-siteapp">
- <title>404页面</title>
- <style>
- .page-404 {
- padding-right: 15px;
- padding-left: 15px;
- margin-right: auto;
- margin-left: auto;
- color: #afb5bf;
- padding-top: 60px;
- padding-bottom: 90px;
- text-align: center;
- }
- .page-404 .error-title {
- width: 350px;
- font-size: 80px;
- margin: 0 auto;
- overflow: hidden;
- }
- .page-404 .icon{
- display: block;
- background-image: url(images/404.png);
- width: 120px;
- height: 120px;
- background-repeat: no-repeat;
- background-size: cover;
- float: left;
- }
- .page-404 .va-m {
- vertical-align: middle!important;
- float: left;
- padding-left: 50px;
- }
- .page-404 .error-description {
- font-size: 24px;
- }
- </style>
- </head>
- <body>
- <div class="page-404 ">
- <div class="error-title">
- <p class="icon" style="font-size:80px"></p>
- <p class="va-m"> 404</span>
- </div>
- <p class="error-description">ขอโทษที่คุณเข้าเยี่ยมชมหน้าเว็บที่ไม่มีอยู่ ~ ~ ~ ~ ~ ~ ~</p>
- </div>
- </body></html>
|