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