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