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