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