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