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