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