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