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