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