Advertisement
Guest User

style.css

a guest
May 21st, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.51 KB | None | 0 0
  1. /*
  2. * Here we declare the CSS rules. You did okay
  3. * except that you didn't indent your code well.
  4. * Indentation means making your code readable
  5. */
  6.  
  7. p {
  8.     color: blue;
  9.     text-align: center;
  10.     text-transform: uppercase; /* This will transform the paragraph into capital letters*/
  11. }
  12.  
  13. /* Here you tell the file that am referring to div. There might be so many elements with #first as well */
  14. div#first {
  15.     background-color: black;
  16. }
  17.  
  18. span.hopes {
  19.     text-decoration: underline; /* This will underline the text*/
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement