Advertisement
HristovJ

Example html and css

Dec 30th, 2014
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.47 KB | None | 0 0
  1. img {
  2.     display: block;
  3.     height: 100px;
  4.     width: 300px;
  5.     margin: auto;
  6. }
  7.  
  8. p {
  9.     text-align: center;
  10.     font-family: Garamond, serif;
  11.     font-size: 18px;
  12. }
  13.  
  14. div {
  15.     border-radius: 5px;
  16.     border: 2px solid #6495ED;
  17.     background-color: #BCD2EE;
  18.     height: 50px;
  19.     width: 120px;
  20.     margin: auto;
  21.     text-align: center;
  22. }
  23.  
  24. a {
  25.     text-decoration: none;
  26.     color: #3D59AB;
  27.     font-family: Verdana, sans-serif;
  28. }
  29.  
  30. span {
  31.     font-weight: bold;
  32.     font-size: 18px;
  33.     color: #ffffff;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement