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