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