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