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