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