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