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