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