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