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