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