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