Advertisement
Antuistiqra

Untitled

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