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