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