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