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