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