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