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