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