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