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