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