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