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