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