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