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