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