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