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