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