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