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