index.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. .bg {
  22. position: absolute;
  23. z-index: 1;
  24. top: 0;
  25. left: 0;
  26. right: 0;
  27. bottom: 0;
  28. background-image: url(http://static.wedding.kyunghak.com/haibao.png);
  29. background-size: cover;
  30. }
  31. .build {
  32. position: absolute;
  33. z-index: 1;
  34. top: 0;
  35. left: 0;
  36. right: 0;
  37. bottom: 0;
  38. width: 200px;
  39. height: 50px;
  40. line-height: 50px;
  41. background-color: rgba(0, 0, 0, 0.3);
  42. border-radius: 10px;
  43. margin: auto;
  44. font-size: 24px;
  45. color: #fff;
  46. text-align: center;;
  47. }
  48. </style>
  49. </head>
  50. <body>
  51. <div class="bg">
  52. <div class="build">建设中...</div>
  53. </div>
  54. </body>
  55. </html>