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