Advertisement
Irhamghan22

Untitled

Aug 21st, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.73 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Contoh Embedded, Selector Class dan ID_ Muhammad Irham AG (XI RPL 2)</title>
  5.     <style type="text/css">
  6.  
  7.     #BhsIndo{
  8.         background-color: ghost;
  9.         border: solid;
  10.         padding: 5px;
  11.         font font-family: Raleway;
  12.     }
  13.  
  14.     .kotak{
  15.         text-shadow: 5px 5px 5px yellow;
  16.     }
  17.  
  18.     #BasaSunda{
  19.         background-color: salmon;
  20.         border: dashed;
  21.         padding: 5px;
  22.         font font-family: consolas;
  23.     }
  24.  
  25.     #English{
  26.         background-color: goldenrod;
  27.         border: double;
  28.         padding: 3px;
  29.         font font-family: Impact;
  30.     }
  31.  
  32.        
  33.     </style>
  34. </head>
  35. <body>
  36.     <div id="BhsIndo" class="kotak">Selamat Pagi!</div>
  37.     <div id="BasaSunda"> Wilujeng Enjing!</div>
  38.     <div id="English" class="kotak">Good Morning</div>
  39.  
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement