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