Advertisement
JustMinecraftPlayer

Coming Soon Page

Jul 10th, 2022
1,065
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.91 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <title>Coming Soon</title>
  8. </head>
  9. <body>
  10.     <style>
  11.          body{
  12.             background-color: rgb(70, 70, 70);
  13.          }
  14.          div{
  15.             border: 1px solid;
  16.             padding: 10px;
  17.             box-shadow: 5px 10px #333333;
  18.             background-color: #FFFFFF;
  19.             border-radius: 1rem;
  20.             width: 20rem;
  21.             height: 22rem;
  22.             margin: auto;
  23.             text-align: center;
  24.             font-family: cursive;
  25.             animation: div-an infinite 5s;
  26.          }
  27.          @keyframes div-an {
  28.              0%{
  29.                  transform: rotateZ(0deg);
  30.              }
  31.              25%{
  32.                  transform: rotateZ(5deg);
  33.              }
  34.              50%{
  35.                  transform: rotateZ(0deg);
  36.              }
  37.              75%{
  38.                  transform: rotateZ(-5deg);
  39.              }
  40.              100%{
  41.                  transform: rotateZ(0deg);
  42.              }
  43.          }
  44.          a{
  45.             text-decoration: none;
  46.             color: #415a40;
  47.             font-size: 1rem;
  48.             font-family: cursive;
  49.             font-weight: bold;
  50.          }
  51.          a:hover{
  52.             text-decoration: underline;
  53.          }
  54.          div > hr{
  55.              width: 16rem
  56.          }
  57.          div > h2{
  58.              line-height: 3rem;
  59.          }
  60.          #big{
  61.             font-size: 1.3rem;
  62.          }
  63.     </style>
  64.     <br><br><br><br><br><br><br><br><br>
  65.     <div>
  66.         <h2>Coming Soon</h2>
  67.         <h3>No one knows what is coming!</h3>
  68.         <h3>The developers is trying their best!</h3>
  69.         <hr>
  70.         <br><br><br>
  71.         <a href="/">&#10096;&#10096;&nbsp;Go back to home page</a>
  72.     </div>
  73. </body>
  74. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement