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