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