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