chowdhury_riham

CSS font demo

Jun 3rd, 2020
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.50 KB | None | 0 0
  1. /*font-family*/
  2.  
  3. p {
  4.     font-family: Arial;
  5. }
  6.  
  7. h1 {
  8.     font-family: Georgia;
  9. }
  10.  
  11. /*font-size*/
  12.  
  13. body {
  14.     font-size: 10px;
  15. }
  16.  
  17. h1 {
  18.     font-size: 5.0em;
  19. }
  20.  
  21. p {
  22.     font-size: 2.0em;
  23. }
  24.  
  25. span {
  26.     font-size: 2.0em;
  27. }
  28.  
  29. /*font-weight*/
  30.  
  31. p{
  32.     font-weight: normal;
  33. }
  34.  
  35. /*line-height*/
  36.  
  37. p {
  38.     line-height: 1.5;
  39. }
  40.  
  41. /*text-align*/
  42.  
  43. h1 {
  44.     text-align: right;
  45. }
  46.  
  47. p {
  48.     text-align: center;
  49. }
  50.  
  51. /*text-decoration*/
  52.  
  53. p {
  54.     text-decoration: underline;
  55. }
  56.  
  57. h1 {
  58.     text-decoration: line-through;
  59. }
Add Comment
Please, Sign In to add comment