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