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