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