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