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