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