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