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