Advertisement
makispaiktis

Codecademy - Exercise - Fictional Arts and Crafts (CSS)

Sep 10th, 2019 (edited)
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.65 KB | None | 0 0
  1. body{
  2.     font-family: Helvetica;
  3. }
  4.  
  5. h2{
  6.     text-align: left;
  7.     color: black;
  8. }
  9.  
  10. h1.khaki{
  11.     text-align: center;
  12.     color: khaki;
  13.     font-size: 100px;
  14.     font-weight: bold;
  15.     background-image: url("backgroundImage.png");
  16. }
  17.  
  18. h1.brushes{
  19.     text-align: left;
  20.     font-size: 32px;
  21.     color: white;
  22.     background-color: mediumspringgreen;
  23. }
  24.  
  25. h1.frames{
  26.     text-align: left;
  27.     font-size: 32px;
  28.     color: white;
  29.     background-color: lightcoral;
  30. }
  31.  
  32. h1.paint{
  33.     text-align: left;
  34.     font-size: 32px;
  35.     color: white;
  36.     background-color: skyblue;
  37. }
  38.  
  39.  
  40. img{
  41.     text-align: left;
  42. }
  43.  
  44. strong{
  45.     color: blue;
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement