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