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