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