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