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