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