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