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