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