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