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