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