index.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <!DOCTYPE html>
  2. <html lang="utf8">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <!-- no cache -->
  6. <meta
  7. http-equiv="Cache-Control"
  8. content="no-cache, no-store, must-revalidate"
  9. />
  10. <meta http-equiv="Pragma" content="no-cache" />
  11. <meta http-equiv="Expires" content="0" />
  12. <meta
  13. id="viewport"
  14. name="viewport"
  15. content="width=device-width, initial-scale=1 ,maximum-scale=1, minimum-scale=1, user-scalable=no"
  16. />
  17. <title>Welcome my wedding</title>
  18. <meta name="keywords" content="朴竞学" />
  19. <meta name="description" content="朴竞学" />
  20. <style>
  21. body {
  22. background-color: black;
  23. }
  24. .bg {
  25. position: absolute;
  26. z-index: 1;
  27. top: 0;
  28. left: 0;
  29. right: 0;
  30. bottom: 0;
  31. }
  32. .bg-img {
  33. position: absolute;
  34. z-index: 1;
  35. top: 50%;
  36. left: 50%;
  37. width: 100%;
  38. transform: translateX(-50%) translateY(-50%);
  39. }
  40. .build {
  41. position: absolute;
  42. z-index: 2;
  43. top: 0;
  44. left: 0;
  45. right: 0;
  46. bottom: 0;
  47. width: 200px;
  48. height: 50px;
  49. line-height: 50px;
  50. background-color: rgba(0, 0, 0, 0.3);
  51. border-radius: 10px;
  52. margin: auto;
  53. font-size: 24px;
  54. color: #fff;
  55. text-align: center;
  56. }
  57. </style>
  58. </head>
  59. <body>
  60. <div class="bg">
  61. <img class="bg-img" src="http://static.wedding.kyunghak.com/haibao.png" />
  62. </div>
  63. <div class="build">建设中...</div>
  64. </body>
  65. </html>