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