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