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