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