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