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