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