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