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