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