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