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