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