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