Advertisement
dysphafiz_

Untitled

Aug 21st, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.49 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Embed CSS macam2 Heading (M. Hafidz Fadillah - XI RPL 2)</title>
  5.     <style type="text/css">
  6.         body.p{
  7.             color: fuchsia;
  8.         }
  9.         h1  {
  10.             color: Coral;
  11.         }
  12.         p.ex {
  13.             color: rgb(0,0,255);
  14.         }
  15.     </style>
  16. </head>
  17. <body>
  18. <h1>Ini adalah heading 1</h1>
  19. <p>ini adalah paragraph, ditulis dengan warna fuchsia. Default text-color didefinisikan pada body selector.</p>
  20. <p class="ex">ini adalah paragraph with class="ex". Dan warna teks biru.</p>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement