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