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