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