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