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