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