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