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