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