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