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