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