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