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