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