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