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