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