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