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