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