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