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