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