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