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