Use on the webTotal Use [ 4324 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/e8fc84881e5d8be1f7b6a39de2dfcf8a?family=Phola+Slab+Solid+Ou+Demo" 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/e8fc84881e5d8be1f7b6a39de2dfcf8a?family=Phola+Slab+Solid+Ou+Demo); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "Phola Slab Solid Ou Demo";
    src: url("https://db.onlinewebfonts.com/t/e8fc84881e5d8be1f7b6a39de2dfcf8a.eot");
    src: url("https://db.onlinewebfonts.com/t/e8fc84881e5d8be1f7b6a39de2dfcf8a.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/e8fc84881e5d8be1f7b6a39de2dfcf8a.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/e8fc84881e5d8be1f7b6a39de2dfcf8a.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/e8fc84881e5d8be1f7b6a39de2dfcf8a.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/e8fc84881e5d8be1f7b6a39de2dfcf8a.svg#Phola Slab Solid Ou Demo")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "Phola Slab Solid Ou Demo";