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