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