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