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