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