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