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