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