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