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