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