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