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