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