Use on the webTotal Use [ 6460 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/1b9512a7038a638eec90a6d7ded633cd?family=Pablo+Skinny" rel="stylesheet"> 
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
  @import url(https://db.onlinewebfonts.com/c/1b9512a7038a638eec90a6d7ded633cd?family=Pablo+Skinny); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "Pablo Skinny";
    src: url("https://db.onlinewebfonts.com/t/1b9512a7038a638eec90a6d7ded633cd.eot");
    src: url("https://db.onlinewebfonts.com/t/1b9512a7038a638eec90a6d7ded633cd.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/1b9512a7038a638eec90a6d7ded633cd.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/1b9512a7038a638eec90a6d7ded633cd.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/1b9512a7038a638eec90a6d7ded633cd.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/1b9512a7038a638eec90a6d7ded633cd.svg#Pablo Skinny")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "Pablo Skinny";