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