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