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