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