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