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