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