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