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