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