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