12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!DOCTYPE html>
- <html lang="utf8">
- <head>
- <meta charset="UTF-8" />
- <!-- no cache -->
- <meta
- http-equiv="Cache-Control"
- content="no-cache, no-store, must-revalidate"
- />
- <meta http-equiv="Pragma" content="no-cache" />
- <meta http-equiv="Expires" content="0" />
- <meta
- id="viewport"
- name="viewport"
- content="width=device-width, initial-scale=1 ,maximum-scale=1, minimum-scale=1, user-scalable=no"
- />
- <title>Welcome my wedding</title>
- <meta name="keywords" content="朴竞学" />
- <meta name="description" content="朴竞学" />
- <style>
- .bg {
- position: absolute;
- z-index: 1;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-image: url(http://static.wedding.kyunghak.com/haibao.png);
- background-size: cover;
- }
- .build {
- position: absolute;
- z-index: 1;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- width: 200px;
- height: 50px;
- line-height: 50px;
- background-color: rgba(0, 0, 0, 0.3);
- border-radius: 10px;
- margin: auto;
- font-size: 24px;
- color: #fff;
- text-align: center;;
- }
- </style>
- </head>
- <body>
- <div class="bg">
- <div class="build">建设中...</div>
- </div>
- </body>
- </html>
|