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