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