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