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