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