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