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