Advertisement
kobial8

Custom Font Integrate in CSS

Apr 7th, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.34 KB | None | 0 0
  1. @font-face {
  2.   font-family: 'SolaimanLipi';
  3.   src: url('fonts/solaiman-lipi.ttf');
  4.   src: local('SolaimanLipi'), url('fonts/solaiman-lipi.ttf') format('truetype');
  5.   font-style: normal;
  6. }
  7.  
  8. body{  
  9.   font-family: 'SolaimanLipi',sans-serif;
  10.   font-size: 15px;
  11. }
  12.  
  13. p{
  14.   font-family: 'SolaimanLipi';
  15.   line-height:24px;
  16.   font-size: 16px;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement