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