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