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