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