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