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