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