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