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