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