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