Advertisement
KodingKid

An introduction to CSS

Mar 25th, 2021
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.25 KB | None | 0 0
  1. body {
  2.     background-color: yellow;
  3. }
  4. h1 {
  5.     color: black;
  6.     text-align: center;
  7. }
  8. .p1 {
  9.   font-family: font-family: "Times New Roman", Times, serif;
  10.   font-size: 30px;
  11. }
  12. .p2 {
  13.     font-family: "Lucida Console", "Courier New", monospace;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement