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