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