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