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