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