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