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