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