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