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