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