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