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