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