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