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