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