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