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