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