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