Advertisement
stevennathaniel

CSS: Source Code PUG untuk Heading dan Paragraf

Jun 22nd, 2016
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.43 KB | None | 0 0
  1. doctype
  2. html(lang="en")
  3.     head
  4.         title Basic CSS
  5.  
  6.         style.
  7.             body{
  8.                 background-color: #4dc71f;
  9.             }
  10.             h1{
  11.                 color: orange;
  12.                 text-align: center;
  13.             }
  14.             p{
  15.                 font-family: "Times New Roman";
  16.                 font-size: 20px;
  17.             }
  18.  
  19.  
  20. h1 Contoh CSS Pertama Menggunakan PUG
  21. p Ini adalah paragraf PUG
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement