Advertisement
Sythz

Untitled

Aug 17th, 2019
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.92 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Hanif Abyan Ayyasyi XI RPL 2</title>
  5. </head>
  6. <style type="text/css">
  7.     #Indonesia
  8.     {
  9.         background-color: azure;
  10.         border: solid;
  11.         padding: 4px;
  12.         font-family: Raleway;
  13.         transform: rotateX(180deg);
  14.         text-align:center;
  15.         margin-bottom: 40px
  16.     }
  17.     .square
  18.     {
  19.         text-shadow: 6px 6px 6px orange;
  20.         width: 300px;
  21.         margin-left: 500px;
  22.     }
  23.     #Japan
  24.     {
  25.         background-color: lightblue;
  26.         border: dashed;
  27.         padding: 6px;
  28.         font-family: Consolas;
  29.         text-align: center;
  30.         transform: rotateX(180deg);
  31.         margin-bottom: 40px;
  32.     }
  33.     #English
  34.     {
  35.         background-color: black;
  36.         border: double;
  37.         padding: 2px;
  38.         font-family: impact;
  39.         text-align: center;
  40.         transform: rotateX(180deg);
  41.     }
  42. </style>
  43.    
  44.    
  45. <body>
  46.     <div id="Indonesia" class="square">SELAMAT PAGI!</div>
  47.     <div id="Japan" class="square">おはよう</div>
  48.     <div id="English" class="square">Good Morning!</div>
  49. </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement