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