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